PDFToImageTest.csproj 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project Sdk="Microsoft.NET.Sdk">
  3. <PropertyGroup>
  4. <OutputType>Exe</OutputType>
  5. <LangVersion>7.3</LangVersion>
  6. <Configurations>Release;Debug</Configurations>
  7. <Platforms>AnyCPU;x64</Platforms>
  8. <AssemblyName>Samples_ComPDFKit</AssemblyName>
  9. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  10. <TargetFramework>net7.0</TargetFramework>
  11. <EnableDefaultCompileItems>false</EnableDefaultCompileItems>
  12. </PropertyGroup>
  13. <PropertyGroup>
  14. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  15. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  16. <ProjectGuid>{82A11207-3CA9-47D2-9F1C-94FE057DABFE}</ProjectGuid>
  17. <OutputType>Exe</OutputType>
  18. <RootNamespace>PDFToImage</RootNamespace>
  19. <AssemblyName>Samples_ComPDFKit</AssemblyName>
  20. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  21. <FileAlignment>512</FileAlignment>
  22. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  23. <Deterministic>true</Deterministic>
  24. <NuGetPackageImportStamp>
  25. </NuGetPackageImportStamp>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  28. <PlatformTarget>AnyCPU</PlatformTarget>
  29. <DebugSymbols>true</DebugSymbols>
  30. <DebugType>full</DebugType>
  31. <Optimize>false</Optimize>
  32. <OutputPath>bin\Debug\</OutputPath>
  33. <DefineConstants>DEBUG;TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. <Prefer32bit>false</Prefer32bit>
  37. </PropertyGroup>
  38. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  39. <PlatformTarget>AnyCPU</PlatformTarget>
  40. <DebugType>pdbonly</DebugType>
  41. <Optimize>true</Optimize>
  42. <OutputPath>bin\Release\</OutputPath>
  43. <DefineConstants>TRACE</DefineConstants>
  44. <ErrorReport>prompt</ErrorReport>
  45. <WarningLevel>4</WarningLevel>
  46. <Prefer32bit>false</Prefer32bit>
  47. </PropertyGroup>
  48. <PropertyGroup>
  49. <ApplicationIcon>ComPDFKit_Logo.ico</ApplicationIcon>
  50. </PropertyGroup>
  51. <ItemGroup>
  52. <Reference Include="PresentationCore" />
  53. <Reference Include="PresentationFramework.Aero2, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  54. <HintPath>..\..\..\packages\PresentationFramework.Aero2.1.0.1\lib\PresentationFramework.Aero2.dll</HintPath>
  55. </Reference>
  56. <Reference Include="System" />
  57. <Reference Include="System.Core" />
  58. <Reference Include="System.Xml.Linq" />
  59. <Reference Include="System.Data.DataSetExtensions" />
  60. <Reference Include="Microsoft.CSharp" />
  61. <Reference Include="System.Data" />
  62. <Reference Include="System.Net.Http" />
  63. <Reference Include="System.Xml" />
  64. <Reference Include="WindowsBase" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <Compile Include="..\..\LicenseKey.cs">
  68. <Link>LicenseKey.cs</Link>
  69. </Compile>
  70. <Compile Include="PDFToImage.cs" />
  71. <Compile Include="Properties\AssemblyInfo.cs" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <None Include="..\..\..\TestFile\CommonFivePage.pdf">
  75. <Link>CommonFivePage.pdf</Link>
  76. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  77. </None>
  78. <None Include="App.config" />
  79. <None Include="packages.config" />
  80. </ItemGroup>
  81. <ItemGroup>
  82. <None Include="..\..\..\license_key_windows.xml">
  83. <Link>license_key_windows.xml</Link>
  84. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  85. </None>
  86. <Content Include="..\..\..\..\..\..\x64\ComPDFKitNative.dll">
  87. <Link>x64\ComPDFKitNative.dll</Link>
  88. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  89. </Content>
  90. <Content Include="ComPDFKit_Logo.ico" />
  91. </ItemGroup>
  92. <ItemGroup>
  93. <ProjectReference Include="..\..\..\..\..\..\compdfkit_windows\ComPDFKit\ComPDFKitCSharp\ComPDFKit.Net.csproj">
  94. <Project>{56e518ad-c126-4b48-9a09-0a64c87020e4}</Project>
  95. <Name>ComPDFKit.Desk</Name>
  96. </ProjectReference>
  97. </ItemGroup>
  98. <ItemGroup>
  99. <PackageReference Include="Magick.NET-Q8-AnyCPU" Version="13.6.0" />
  100. </ItemGroup>
  101. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  102. </Project>