| 12345678910111213141516171819202122232425 |
- <?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>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0|AnyCPU' ">
- <DefineConstants>NET_1_1,NET_2_0</DefineConstants>
- </PropertyGroup>
- <ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0|AnyCPU' ">
- <Reference Include="System"/>
- <Reference Include="System.Xml"/>
- <Reference Include="System.Security">
- <HintPath>..\lib\net_2_0\System.Security.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>
|