System.csproj 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. <CodePage>65001</CodePage>
  9. <UseVSHostingProcess>false</UseVSHostingProcess>
  10. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'basic|AnyCPU' ">
  13. <DefineConstants>BOOTSTRAP_BASIC,NET_1_1,NET_2_0,CONFIGURATION_2_0</DefineConstants>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'basic_XML_DEP|AnyCPU' ">
  16. <DefineConstants>BOOTSTRAP_BASIC,NET_1_1,NET_2_0,CONFIGURATION_2_0,XML_DEP</DefineConstants>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0|AnyCPU' ">
  19. <DefineConstants>NET_1_1,NET_2_0,CONFIGURATION_2_0</DefineConstants>
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0_XML_DEP|AnyCPU' ">
  22. <DefineConstants>NET_1_1,NET_2_0,CONFIGURATION_2_0,XML_DEP,SECURITY_DEP</DefineConstants>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0_ALL_DEP|AnyCPU' ">
  25. <DefineConstants>NET_1_1,NET_2_0,CONFIGURATION_2_0,XML_DEP,SECURITY_DEP,CONFIGURATION_DEP</DefineConstants>
  26. </PropertyGroup>
  27. <ItemGroup>
  28. <EmbeddedResource Include="resources\Asterisk.wav"/>
  29. <EmbeddedResource Include="resources\Beep.wav"/>
  30. <EmbeddedResource Include="resources\Exclamation.wav"/>
  31. <EmbeddedResource Include="resources\Hand.wav"/>
  32. <EmbeddedResource Include="resources\Question.wav"/>
  33. </ItemGroup>
  34. <ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0_ALL_DEP|AnyCPU' ">
  35. <Reference Include="System.Xml"/>
  36. <Reference Include="System.Configuration"/>
  37. <Reference Include="System">
  38. <Aliases>PrebuiltSystem</Aliases>
  39. <HintPath>..\lib\net_2_0\System.dll</HintPath>
  40. </Reference>
  41. <Reference Include="Mono.Security">
  42. <HintPath>..\lib\net_2_0\Mono.Security.dll</HintPath>
  43. </Reference>
  44. </ItemGroup>
  45. <ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0_XML_DEP|AnyCPU' ">
  46. <Reference Include="System.Xml"/>
  47. <Reference Include="System">
  48. <Aliases>PrebuiltSystem</Aliases>
  49. <HintPath>..\lib\net_2_0\System.dll</HintPath>
  50. </Reference>
  51. <Reference Include="Mono.Security">
  52. <HintPath>..\lib\net_2_0\Mono.Security.dll</HintPath>
  53. </Reference>
  54. </ItemGroup>
  55. <ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'basic_XML_DEP|AnyCPU' ">
  56. <Reference Include="System.Xml"/>
  57. </ItemGroup>
  58. <Import Project="$(MSBuildProjectDirectory)\..\..\build\msbuild\Mono.Common.targets"/>
  59. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  60. <Target Name="BeforeBuild" DependsOnTargets="SetupProject">
  61. </Target>
  62. </Project>