-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddPdfEnvelope.csproj
More file actions
43 lines (40 loc) · 1.78 KB
/
AddPdfEnvelope.csproj
File metadata and controls
43 lines (40 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Copyright>Copyright (c) Thomas Gossler</Copyright>
<PackageProjectUrl>https://github.com/thgossler/AddPdfEnvelope</PackageProjectUrl>
<Description>A CLI tool for Windows and Linux to add a cover page, header and footer to a PDF document.</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/thgossler/AddPdfEnvelope</RepositoryUrl>
<AssemblyVersion>0.6.1</AssemblyVersion>
<PackageLicenseExpression>AGPL-3.0-only</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<FileVersion>0.6.1</FileVersion>
<Version>$(VersionPrefix)0.6.1</Version>
</PropertyGroup>
<ItemGroup>
<None Remove="Test.pdf" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="itext" Version="9.5.0" />
<PackageReference Include="itext.commons" Version="9.5.0" />
<PackageReference Include="itext7" Version="9.5.0" />
<PackageReference Include="itext7.bouncy-castle-adapter" Version="9.5.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.2" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.CommandLine" Version="2.0.2" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>