DocumentCompareTest.csproj 2.7 KB

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