-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathFB2Library.csproj
37 lines (32 loc) · 1.83 KB
/
FB2Library.csproj
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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard1.0;netstandard2.1;net6.0</TargetFrameworks>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<PackageId>FB2Library</PackageId>
<PackageVersion>1.3.2</PackageVersion>
<Title>Cross-Platform .NET library for read .FB2 ebook files</Title>
<Description>This project provides .Net standard library to help developers load .FB2 ebook files. This ebook files format is widely acceptable in Russia. If you doing some converter, reader or editor for ebooks and you using one of the .Net languages - this project for you.</Description>
<Authors>lordkiron, Yauheni Pakala</Authors>
<PackageTags>netstandard;dotnet6;fb2;ebook;windows;uwp;android;ios;linux;macos;xamarin;xamarin.forms;maui</PackageTags>
<PackageIcon>icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/wcoder/FB2Library</PackageProjectUrl>
<RepositoryBranch>master</RepositoryBranch>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>Add more target frameworks</PackageReleaseNotes>
<Copyright>Copyright (c) 2009-2015 lordkiron / 2022 Yauheni Pakala</Copyright>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="" />
<None Include="..\LICENSE.md" Pack="true" PackagePath="" />
<None Include="..\images\icon.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
</Project>