25 lines
703 B
XML
25 lines
703 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net462;net7.0;net8.0;net9.0</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)' == 'net462'">
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<LangVersion>7.3</LangVersion>
|
|
<Nullable>disable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)' != 'net462'">
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<LangVersion>latest</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="itext" Version="8.0.5" />
|
|
<PackageReference Include="itext.bouncy-castle-adapter" Version="8.0.5" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|