| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?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>
- <CodePage>65001</CodePage>
- <UseVSHostingProcess>false</UseVSHostingProcess>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'basic|AnyCPU' ">
- <DefineConstants>BOOTSTRAP_BASIC,NET_1_1,NET_2_0,CONFIGURATION_2_0</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'basic_XML_DEP|AnyCPU' ">
- <DefineConstants>BOOTSTRAP_BASIC,NET_1_1,NET_2_0,CONFIGURATION_2_0,XML_DEP</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0|AnyCPU' ">
- <DefineConstants>NET_1_1,NET_2_0,CONFIGURATION_2_0</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0_XML_DEP|AnyCPU' ">
- <DefineConstants>NET_1_1,NET_2_0,CONFIGURATION_2_0,XML_DEP,SECURITY_DEP</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0_ALL_DEP|AnyCPU' ">
- <DefineConstants>NET_1_1,NET_2_0,CONFIGURATION_2_0,XML_DEP,SECURITY_DEP,CONFIGURATION_DEP</DefineConstants>
- </PropertyGroup>
- <ItemGroup>
- <EmbeddedResource Include="resources\Asterisk.wav"/>
- <EmbeddedResource Include="resources\Beep.wav"/>
- <EmbeddedResource Include="resources\Exclamation.wav"/>
- <EmbeddedResource Include="resources\Hand.wav"/>
- <EmbeddedResource Include="resources\Question.wav"/>
- </ItemGroup>
- <ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0_ALL_DEP|AnyCPU' ">
- <Reference Include="System.Xml"/>
- <Reference Include="System.Configuration"/>
- <Reference Include="System">
- <Aliases>PrebuiltSystem</Aliases>
- <HintPath>..\lib\net_2_0\System.dll</HintPath>
- </Reference>
- <Reference Include="Mono.Security">
- <HintPath>..\lib\net_2_0\Mono.Security.dll</HintPath>
- </Reference>
- </ItemGroup>
- <ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0_XML_DEP|AnyCPU' ">
- <Reference Include="System.Xml"/>
- <Reference Include="System">
- <Aliases>PrebuiltSystem</Aliases>
- <HintPath>..\lib\net_2_0\System.dll</HintPath>
- </Reference>
- <Reference Include="Mono.Security">
- <HintPath>..\lib\net_2_0\Mono.Security.dll</HintPath>
- </Reference>
- </ItemGroup>
- <ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'basic_XML_DEP|AnyCPU' ">
- <Reference Include="System.Xml"/>
- </ItemGroup>
- <Import Project="$(MSBuildProjectDirectory)\..\..\build\msbuild\Mono.Common.targets"/>
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- <Target Name="BeforeBuild" DependsOnTargets="SetupProject">
- </Target>
- </Project>
|