DocumentCompareTest.csproj 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. <RootNamespace>DocumentCompare</RootNamespace>
  9. </PropertyGroup>
  10. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  11. <PlatformTarget>AnyCPU</PlatformTarget>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <Content Include="..\..\..\TestFile\CommonFivePage.pdf">
  15. <Link>CommonFivePage.pdf</Link>
  16. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  17. </Content>
  18. <Content Include="..\..\..\TestFile\ElectricalDiagram.pdf">
  19. <Link>ElectricalDiagram.pdf</Link>
  20. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  21. </Content>
  22. <Content Include="..\..\..\TestFile\ElectricalDiagram_New.pdf">
  23. <Link>ElectricalDiagram_New.pdf</Link>
  24. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  25. </Content>
  26. <Content Include="..\..\..\TestFile\Signed.pdf">
  27. <Link>Signed.pdf</Link>
  28. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  29. </Content>
  30. <Content Include="..\..\..\TestFile\Text.pdf">
  31. <Link>Text.pdf</Link>
  32. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  33. </Content>
  34. <Content Include="..\..\..\TestFile\TextChanged.pdf">
  35. <Link>TextChanged.pdf</Link>
  36. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  37. </Content>
  38. <Content Include="..\..\build\x64\ComPDFKit.dll">
  39. <Link>x64\ComPDFKit.dll</Link>
  40. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  41. </Content>
  42. <Content Include="..\..\build\x86\ComPDFKit.dll">
  43. <Link>x86\ComPDFKit.dll</Link>
  44. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  45. </Content>
  46. <Content Include="..\..\ComPDFKit_Logo.ico">
  47. <Link>ComPDFKit_Logo.ico</Link>
  48. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  49. </Content>
  50. <Content Include="..\..\license_key_windows.txt">
  51. <Link>license_key_windows.txt</Link>
  52. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  53. </Content>
  54. </ItemGroup>
  55. <ItemGroup>
  56. <ProjectReference Include="..\..\..\..\..\..\compdfkit\ComPDFKit\ComPDFKitCSharp\ComPDFKit.Desk.csproj" />
  57. <ProjectReference Include="..\ComPDFKitCSharp\ComPDFKit.Desk.csproj" />
  58. </ItemGroup>
  59. <ItemGroup>
  60. <Compile Include="..\..\LicenseKey.cs">
  61. <Link>LicenseKey.cs</Link>
  62. </Compile>
  63. </ItemGroup>
  64. </Project>