BackgroundTest.csproj 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  5. <TargetFrameworks>net7.0;net461</TargetFrameworks>
  6. <LangVersion>7.3</LangVersion>
  7. <Configurations>Release;Debug</Configurations>
  8. <Platforms>AnyCPU;x64</Platforms>
  9. <AssemblyName>Samples_ComPDFKit</AssemblyName>
  10. </PropertyGroup>
  11. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  12. <PlatformTarget>AnyCPU</PlatformTarget>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <Compile Include="..\..\LicenseKey.cs">
  16. <Link>LicenseKey.cs</Link>
  17. </Compile>
  18. </ItemGroup>
  19. <ItemGroup>
  20. <Content Include="..\..\..\..\..\..\x64\ComPDFKitNative.dll">
  21. <Link>x64\ComPDFKitNative.dll</Link>
  22. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  23. </Content>
  24. <Content Include="..\..\..\TestFile\ColorBackground.pdf">
  25. <Link>ColorBackground.pdf</Link>
  26. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  27. </Content>
  28. <Content Include="..\..\..\TestFile\CommonFivePage.pdf">
  29. <Link>CommonFivePage.pdf</Link>
  30. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  31. </Content>
  32. <Content Include="..\..\..\TestFile\ImageBackground.pdf">
  33. <Link>ImageBackground.pdf</Link>
  34. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  35. </Content>
  36. <Content Include="..\..\ComPDFKit_Logo.ico">
  37. <Link>ComPDFKit_Logo.ico</Link>
  38. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  39. </Content>
  40. <Content Include="..\..\license_key_windows.txt">
  41. <Link>license_key_windows.txt</Link>
  42. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  43. </Content>
  44. </ItemGroup>
  45. <ItemGroup>
  46. <ProjectReference Include="..\..\..\..\..\..\compdfkit_windows\ComPDFKit\ComPDFKitCSharp\ComPDFKit.Net.csproj">
  47. <Project>{56e518ad-c126-4b48-9a09-0a64c87020e4}</Project>
  48. <Name>ComPDFKit.Desk</Name>
  49. </ProjectReference>
  50. </ItemGroup>
  51. <ItemGroup>
  52. <PackageReference Include="Magick.NET-Q8-AnyCPU" Version="13.6.0" />
  53. </ItemGroup>
  54. </Project>