System.Core.csproj 1.2 KB

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="3.5" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <OutputType>Library</OutputType>
  5. <AssemblyName>$(MSBuildProjectName)</AssemblyName>
  6. <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  7. <NoConfig>true</NoConfig>
  8. <NoWarn>1720</NoWarn>
  9. <CodePage>65001</CodePage>
  10. <UseVSHostingProcess>false</UseVSHostingProcess>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'basic|AnyCPU' ">
  13. <DefineConstants>BOOTSTRAP_BASIC,NET_1_1,NET_2_0,INSIDE_SYSCORE,LIBC,NET_3_5</DefineConstants>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0|AnyCPU' ">
  16. <DefineConstants>NET_1_1,NET_2_0,INSIDE_SYSCORE,LIBC,NET_3_5</DefineConstants>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <Reference Include="System.dll"/>
  20. <Reference Include="Mono.Posix">
  21. <HintPath>..\lib\net_2_0\Mono.Posix.dll</HintPath>
  22. </Reference>
  23. </ItemGroup>
  24. <Import Project="$(MSBuildProjectDirectory)\..\..\build\msbuild\Mono.Common.targets"/>
  25. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  26. <Target Name="BeforeBuild" DependsOnTargets="SetupProject">
  27. </Target>
  28. </Project>