-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDocnetExtended.csproj
More file actions
27 lines (23 loc) · 889 Bytes
/
DocnetExtended.csproj
File metadata and controls
27 lines (23 loc) · 889 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>Talrand</Authors>
<Description>DocNetExtended is a small extension library built upon the DocNet library, designed to extract text in a readable order from PDFs.</Description>
<Version>0.5.0.1</Version>
<RepositoryUrl>https://github.com/talrand/DocnetExtended</RepositoryUrl>
<AssemblyVersion>0.5.0.1</AssemblyVersion>
<FileVersion>0.5.0.1</FileVersion>
<PackageId>DocNetExtended</PackageId>
<Product>DocNetExtended</Product>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Docnet.Core" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<None Include="LICENSE.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>