PDF3D/PDFGenerator/PDFGenerator.csproj

35 lines
720 B
XML
Raw Permalink Normal View History

2023-04-24 16:20:24 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net472</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>9.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="Logo.png" />
</ItemGroup>
<ItemGroup>
<Content Include="Logo.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="itext7" Version="7.2.5" />
</ItemGroup>
<ItemGroup>
2023-04-25 15:48:55 +08:00
<ProjectReference Include="..\IDTF.Net\IDTF.Net.csproj" />
2023-04-24 16:20:24 +08:00
</ItemGroup>
2023-05-06 14:07:51 +08:00
<ItemGroup>
<None Update="IDTFTool\**\**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
2023-04-24 16:20:24 +08:00
</Project>