2
0

System.Xml.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. <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. <NoWarn>0618,0612,0642</NoWarn>
  10. <NoConfig>true</NoConfig>
  11. <CodePage>65001</CodePage>
  12. <UseVSHostingProcess>false</UseVSHostingProcess>
  13. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'basic|AnyCPU' ">
  16. <DefineConstants>BOOTSTRAP_BASIC,NET_1_1,NET_2_0</DefineConstants>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <Compile Include="System.Xml.XPath\Parser.cs"/>
  20. <Compile Include="Mono.Xml.Xsl\PatternParser.cs"/>
  21. <Compile Include="Mono.Xml.Xsl\PatternTokenizer.cs"/>
  22. <Reference Include="System.dll"/>
  23. </ItemGroup>
  24. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  25. <Target Name="BeforeBuild" DependsOnTargets="SetupProject">
  26. </Target>
  27. </Project>