GDIPlusTest.csproj 868 B

123456789101112131415161718192021222324252627
  1. <!-- MSBuild project for testing GDIPlus functions on Windows -->
  2. <!-- Output goes to bin\Debug\GDIPlusTest.exe -->
  3. <?xml version="1.0" encoding="iso-8859-1"?>
  4. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
  5. DefaultTargets="Build">
  6. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  7. <PropertyGroup>
  8. <DefineConstants>TEST</DefineConstants>
  9. <OutputType>Library</OutputType>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <Reference Include="System" />
  13. <Reference Include="System.Drawing" />
  14. <Reference Include="nunit.framework" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <Compile Include="Test\System.Drawing\GDIPlusTest.cs" />
  18. <Compile Include="System.Drawing\gdipEnums.cs" />
  19. <Compile Include="System.Drawing\gdipFunctions.cs" />
  20. <Compile Include="System.Drawing\gdipStructs.cs" />
  21. </ItemGroup>
  22. </Project>