| 12345678910111213141516171819202122232425262728 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="3.5" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <OutputType>Library</OutputType>
- <AssemblyName>$(MSBuildProjectName)</AssemblyName>
- <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
- <NoConfig>true</NoConfig>
- <NoWarn>1720</NoWarn>
- <CodePage>65001</CodePage>
- <UseVSHostingProcess>false</UseVSHostingProcess>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'basic|AnyCPU' ">
- <DefineConstants>BOOTSTRAP_BASIC,NET_1_1,NET_2_0,INSIDE_SYSCORE,LIBC,NET_3_5</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0|AnyCPU' ">
- <DefineConstants>NET_1_1,NET_2_0,INSIDE_SYSCORE,LIBC,NET_3_5</DefineConstants>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="System.dll"/>
- <Reference Include="Mono.Posix">
- <HintPath>..\lib\net_2_0\Mono.Posix.dll</HintPath>
- </Reference>
- </ItemGroup>
- <Import Project="$(MSBuildProjectDirectory)\..\..\build\msbuild\Mono.Common.targets"/>
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- <Target Name="BeforeBuild" DependsOnTargets="SetupProject">
- </Target>
- </Project>
|