System.Security.csproj 1.2 KB

123456789101112131415161718192021222324252627
  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. <NoWarn>414</NoWarn>
  10. <UseVSHostingProcess>false</UseVSHostingProcess>
  11. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0|AnyCPU' ">
  14. <DefineConstants>NET_1_1,NET_2_0,SECURITY_DEP</DefineConstants>
  15. </PropertyGroup>
  16. <ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0|AnyCPU' ">
  17. <Reference Include="System.Xml"/>
  18. <Reference Include="System"/>
  19. <Reference Include="Mono.Security">
  20. <HintPath>..\lib\net_2_0\Mono.Security.dll</HintPath>
  21. </Reference>
  22. </ItemGroup>
  23. <Import Project="$(MSBuildProjectDirectory)\..\..\build\msbuild\Mono.Common.targets"/>
  24. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  25. <Target Name="BeforeBuild" DependsOnTargets="SetupProject">
  26. </Target>
  27. </Project>