System.csproj 1.6 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="3.5" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildProjectDirectory)\..\..\build\msbuild\Mono.Common.targets"/>
  4. <PropertyGroup>
  5. <OutputType>Library</OutputType>
  6. <AssemblyName>$(MSBuildProjectName)</AssemblyName>
  7. <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  8. <CompilerResponseFile>@(ResponseFile)</CompilerResponseFile>
  9. <NoConfig>true</NoConfig>
  10. <CodePage>65001</CodePage>
  11. <UseVSHostingProcess>false</UseVSHostingProcess>
  12. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'basic|AnyCPU' ">
  15. <DefineConstants>BOOTSTRAP_BASIC,NET_1_1,NET_2_0,CONFIGURATION_2_0</DefineConstants>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'basic_XML_DEP|AnyCPU' ">
  18. <DefineConstants>BOOTSTRAP_BASIC,NET_1_1,NET_2_0,CONFIGURATION_2_0,XML_DEP</DefineConstants>
  19. </PropertyGroup>
  20. <ItemGroup>
  21. <EmbeddedResource Include="resources/Asterisk.wav"/>
  22. <EmbeddedResource Include="resources/Beep.wav"/>
  23. <EmbeddedResource Include="resources/Exclamation.wav"/>
  24. <EmbeddedResource Include="resources/Hand.wav"/>
  25. <EmbeddedResource Include="resources/Question.wav"/>
  26. </ItemGroup>
  27. <ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'basic_XML_DEP|AnyCPU' ">
  28. <Reference Include="System.Xml"/>
  29. </ItemGroup>
  30. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  31. <Target Name="BeforeBuild" DependsOnTargets="SetupProject">
  32. </Target>
  33. </Project>