2018-11-25 19:44:08 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2017-11-10 03:14:09 +08:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
2018-01-11 03:49:32 +08:00
|
|
|
|
<PackageId>PdfPig</PackageId>
|
2018-01-07 20:09:23 +08:00
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<Authors>UglyToad</Authors>
|
2018-01-11 06:35:09 +08:00
|
|
|
|
<Title>PdfPig</Title>
|
2018-12-31 00:20:28 +08:00
|
|
|
|
<Description>Reads text content from PDF documents and supports document creation.</Description>
|
2018-01-11 04:31:38 +08:00
|
|
|
|
<PackageLicenseUrl>https://raw.githubusercontent.com/UglyToad/PdfPig/master/LICENSE</PackageLicenseUrl>
|
|
|
|
|
<PackageProjectUrl>https://github.com/UglyToad/PdfPig</PackageProjectUrl>
|
2018-01-11 03:49:32 +08:00
|
|
|
|
<PackageTags>PDF;Reader;Document;Adobe;PDFBox;PdfPig</PackageTags>
|
2018-01-11 04:31:38 +08:00
|
|
|
|
<RepositoryUrl>https://github.com/UglyToad/PdfPig</RepositoryUrl>
|
2018-01-07 20:09:23 +08:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2018-12-31 00:20:28 +08:00
|
|
|
|
<Version>0.0.5</Version>
|
|
|
|
|
<AssemblyVersion>0.0.5.0</AssemblyVersion>
|
2018-11-27 03:46:41 +08:00
|
|
|
|
<FileVersion>0.0.3.0</FileVersion>
|
2018-01-11 04:31:38 +08:00
|
|
|
|
<PackageIconUrl>https://raw.githubusercontent.com/UglyToad/PdfPig/master/documentation/pdfpig.png</PackageIconUrl>
|
|
|
|
|
<Product>PdfPig</Product>
|
2018-11-25 19:44:08 +08:00
|
|
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
|
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
2018-11-29 05:54:06 +08:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2018-11-25 19:44:08 +08:00
|
|
|
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
2017-11-10 03:14:09 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2017-12-03 07:50:58 +08:00
|
|
|
|
<ItemGroup>
|
2018-04-13 07:18:38 +08:00
|
|
|
|
<None Remove="Resources\AdobeFontMetrics\*" />
|
|
|
|
|
<None Remove="Resources\CMap\*" />
|
|
|
|
|
<None Remove="Resources\GlyphList\*" />
|
2017-12-03 07:50:58 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Resources\AdobeFontMetrics\MustRead.html">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2018-04-13 07:18:38 +08:00
|
|
|
|
<EmbeddedResource Include="Resources\AdobeFontMetrics\*" />
|
|
|
|
|
<EmbeddedResource Include="Resources\CMap\*" />
|
|
|
|
|
<EmbeddedResource Include="Resources\GlyphList\*" />
|
2017-12-03 07:50:58 +08:00
|
|
|
|
</ItemGroup>
|
2018-11-25 19:44:08 +08:00
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63127-02">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
2017-12-06 05:26:07 +08:00
|
|
|
|
|
2017-11-10 03:14:09 +08:00
|
|
|
|
</Project>
|