EncryptTest.csproj 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. </PropertyGroup>
  9. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  10. <PlatformTarget>AnyCPU</PlatformTarget>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <Compile Include="..\..\LicenseKey.cs">
  14. <Link>LicenseKey.cs</Link>
  15. </Compile>
  16. </ItemGroup>
  17. <ItemGroup>
  18. <Content Include="..\..\..\packages\ComPDFKit.NetFramework.1.11.0\build\x64\ComPDFKit.dll">
  19. <Link>x64\ComPDFKit.dll</Link>
  20. </Content>
  21. <Content Include="..\..\..\packages\ComPDFKit.NetFramework.1.11.0\build\x86\ComPDFKit.dll">
  22. <Link>x86\ComPDFKit.dll</Link>
  23. </Content>
  24. <Content Include="..\..\..\TestFile\AllPasswords.pdf">
  25. <Link>AllPasswords.pdf</Link>
  26. </Content>
  27. <Content Include="..\..\..\TestFile\CommonFivePage.pdf">
  28. <Link>CommonFivePage.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\ComPDFKit\ComPDFKitCSharp\ComPDFKit.Desk.csproj" />
  42. </ItemGroup>
  43. </Project>