-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathGhostscript.NET.csproj
More file actions
63 lines (56 loc) · 2.51 KB
/
Copy pathGhostscript.NET.csproj
File metadata and controls
63 lines (56 loc) · 2.51 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Ghostscript.NET.xml</DocumentationFile>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Title>Ghostscript.NET</Title>
<Version>1.3.3</Version>
<Authors>Artifex Software Inc.</Authors>
<Company>Artifex</Company>
<Description>A C# binding for Ghostscript library</Description>
<Copyright>Artifex Software Inc.</Copyright>
<PackageProjectUrl>https://github.com/ArtifexSoftware/Ghostscript.NET</PackageProjectUrl>
<PackageReadmeFile>Description.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/ArtifexSoftware/Ghostscript.NET</RepositoryUrl>
<PackageTags>C#;F#;VB.Net;Ghostscript;DotNet;PDF</PackageTags>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageIcon>gs-icon.png</PackageIcon>
<PackageReleaseNotes>Consolidates PDFA Creation and ZUGFeRD packages into Ghostscript.NET</PackageReleaseNotes>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
</PropertyGroup>
<ItemGroup>
<None Remove="PDFA3Converter\assets\pdfMarkA3.template" />
<None Remove="PDFA3Converter\assets\pdfMarkZUGFeRD.template" />
<None Remove="PDFA3Converter\assets\rgb.icc" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="PDFA3Converter\assets\pdfMarkA3.template" />
<EmbeddedResource Include="PDFA3Converter\assets\pdfMarkZUGFeRD.template" />
<EmbeddedResource Include="PDFA3Converter\assets\rgb.icc" />
</ItemGroup>
<ItemGroup>
<None Include="..\Description.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\LICENSE.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include=".\images\gs-icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<None Include="bin\$(Configuration)\$(TargetFramework)\Ghostscript.NET.xml" Pack="true" PackagePath="lib\netstandard2.0\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" />
<PackageReference Include="SkiaSharp" Version="3.119.1" />
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="3.119.1" />
<PackageReference Include="System.IO.Abstractions" Version="22.0.12" />
</ItemGroup>
</Project>