System.Web.csproj 1.4 KB

1234567891011121314151617181920212223242526272829303132
  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.Default.targets"/>
  4. <PropertyGroup>
  5. <OutputType>Library</OutputType>
  6. <AssemblyName>$(MSBuildProjectName)</AssemblyName>
  7. <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  8. <NoConfig>true</NoConfig>
  9. <NoWarn>612,618</NoWarn>
  10. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  11. <CodePage>65001</CodePage>
  12. <UseVSHostingProcess>false</UseVSHostingProcess>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0|AnyCPU' ">
  15. <DefineConstants>NET_1_1,NET_2_0,INSIDE_SYSTEM_WEB</DefineConstants>
  16. </PropertyGroup>
  17. <ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0|AnyCPU' ">
  18. <Reference Include="System"/>
  19. <Reference Include="System.Drawing"/>
  20. <Reference Include="System.Data"/>
  21. <Reference Include="System.Xml"/>
  22. <Reference Include="System.Configuration"/>
  23. <Reference Include="System.EnterpriseServices"/>
  24. <Reference Include="Mono.Data.Sqlite">
  25. <HintPath>..\lib\net_2_0\Mono.Data.Sqlite.dll</HintPath>
  26. </Reference>
  27. </ItemGroup>
  28. <Import Project="$(MSBuildProjectDirectory)\..\..\build\msbuild\Mono.Common.targets"/>
  29. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  30. <Target Name="BeforeBuild" DependsOnTargets="SetupProject">
  31. </Target>
  32. </Project>