1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
- <TargetFrameworks>net7.0;net461</TargetFrameworks>
- <LangVersion>7.3</LangVersion>
- <Configurations>Release;Debug</Configurations>
- <Platforms>AnyCPU;x64</Platforms>
- <AssemblyName>Samples_ComPDFKit</AssemblyName>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="..\..\LicenseKey.cs">
- <Link>LicenseKey.cs</Link>
- </Compile>
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\..\..\..\..\x64\ComPDFKitNative.dll">
- <Link>x64\ComPDFKitNative.dll</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
-
- <Content Include="..\..\..\TestFile\ColorBackground.pdf">
- <Link>ColorBackground.pdf</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\..\TestFile\CommonFivePage.pdf">
- <Link>CommonFivePage.pdf</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\..\TestFile\ImageBackground.pdf">
- <Link>ImageBackground.pdf</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\ComPDFKit_Logo.ico">
- <Link>ComPDFKit_Logo.ico</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\license_key_windows.txt">
- <Link>license_key_windows.txt</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\..\..\..\..\compdfkit_windows\ComPDFKit\ComPDFKitCSharp\ComPDFKit.Net.csproj">
- <Project>{56e518ad-c126-4b48-9a09-0a64c87020e4}</Project>
- <Name>ComPDFKit.Desk</Name>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Magick.NET-Q8-AnyCPU" Version="13.6.0" />
- </ItemGroup>
- </Project>
|