StreamLoadTest.csproj 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. <AssemblyName>Samples_ComPDFKit</AssemblyName>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <Compile Include="..\LicenseKey.cs" Link="LicenseKey.cs" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <None Include="..\..\license_key_windows.xml" Link="license_key_windows.xml">
  14. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  15. </None>
  16. </ItemGroup>
  17. <ItemGroup>
  18. <None Include="..\..\TestFile\PDF32000_2008.pdf" Link="PDF32000_2008.pdf">
  19. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  20. </None>
  21. </ItemGroup>
  22. <ItemGroup>
  23. <Reference Include="ComPDFKit.Desk">
  24. <HintPath>ComPDFKit.Desk.dll</HintPath>
  25. </Reference>
  26. </ItemGroup>
  27. <ItemGroup>
  28. <None Update="ComPDFKit.Desk.dll">
  29. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  30. </None>
  31. </ItemGroup>
  32. </Project>