Microsoft.Drawing.csproj 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{2421B8B6-355E-4E6E-8955-1BEB1A4C1B84}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Microsoft.Drawing</RootNamespace>
  11. <AssemblyName>Microsoft.Drawing</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>..\_Output\Debug\</OutputPath>
  20. <DefineConstants>DEBUG;TRACE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. <DocumentationFile>..\_Output\Debug\Microsoft.Drawing.XML</DocumentationFile>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>..\_Output\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. <DocumentationFile>..\_Output\Release\Microsoft.Drawing.XML</DocumentationFile>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="System" />
  36. <Reference Include="System.Core" />
  37. <Reference Include="System.Drawing" />
  38. <Reference Include="System.Windows.Forms" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <Compile Include="Classes\ClipGraphics.cs" />
  42. <Compile Include="Classes\DoubleBufferedGraphics.cs" />
  43. <Compile Include="Classes\LockedBitmapData.cs" />
  44. <Compile Include="Classes\PixelOffsetModeGraphics.cs" />
  45. <Compile Include="Classes\SmoothingModeGraphics.cs" />
  46. <Compile Include="Classes\TextRenderingHintGraphics.cs" />
  47. <Compile Include="Classes\TranslateGraphics.cs" />
  48. <Compile Include="Interfaces\IWindow.cs" />
  49. <Compile Include="Properties\AssemblyInfo.cs" />
  50. <Compile Include="Structs\ColorVector.cs" />
  51. <Compile Include="Structs\ColorVectorConverter.cs" />
  52. <Compile Include="Util\BufferedGraphicsEx.cs" />
  53. <Compile Include="Util\GraphicsEx.cs" />
  54. <Compile Include="Util\PointEx.cs" />
  55. <Compile Include="Util\RectangleEx.cs" />
  56. <Compile Include="Util\SizeEx.cs" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <ProjectReference Include="..\Microsoft.Win32\Microsoft.Win32.csproj">
  60. <Project>{b1d6b045-127c-47fc-adf2-ce3957f4d694}</Project>
  61. <Name>Microsoft.Win32</Name>
  62. </ProjectReference>
  63. <ProjectReference Include="..\Microsoft\Microsoft.csproj">
  64. <Project>{f2a4d4c2-a948-4351-9d46-117f372ab4a4}</Project>
  65. <Name>Microsoft</Name>
  66. </ProjectReference>
  67. </ItemGroup>
  68. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  69. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  70. Other similar extension points exist, see Microsoft.Common.targets.
  71. <Target Name="BeforeBuild">
  72. </Target>
  73. <Target Name="AfterBuild">
  74. </Target>
  75. -->
  76. </Project>