PDF3D/PDFGenerator/PDFGenerator.csproj

29 lines
588 B
XML
Raw 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>
</Project>