WatermarkTest.csproj 1.9 KB

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