OutlineTest.csproj 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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="..\..\..\..\..\..\x64\ComPDFKit.dll">
  19. <Link>x64\ComPDFKit.dll</Link>
  20. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  21. </Content>
  22. <Content Include="..\..\..\TestFile\CommonFivePage.pdf">
  23. <Link>CommonFivePage.pdf</Link>
  24. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  25. </Content>
  26. <Content Include="..\..\..\TestFile\FourOutline.pdf">
  27. <Link>FourOutline.pdf</Link>
  28. </Content>
  29. <Content Include="..\..\ComPDFKit_Logo.ico">
  30. <Link>ComPDFKit_Logo.ico</Link>
  31. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  32. </Content>
  33. <Content Include="..\..\license_key_windows.txt">
  34. <Link>license_key_windows.txt</Link>
  35. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  36. </Content>
  37. </ItemGroup>
  38. <ItemGroup>
  39. <ProjectReference Include="..\..\..\..\..\..\compdfkit_windows\ComPDFKit\ComPDFKitCSharp\ComPDFKit.Desk.csproj">
  40. <Project>{56e518ad-c126-4b48-9a09-0a64c87020e4}</Project>
  41. <Name>ComPDFKit.Desk</Name>
  42. </ProjectReference>
  43. </ItemGroup>
  44. </Project>