20 lines
802 B
XML
20 lines
802 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Include="Render\**\*.html" CopyToOutputDirectory="Always" />
|
|
<None Include="Render\**\*.css" CopyToOutputDirectory="Always" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Epub4Net" Version="1.2.0" />
|
|
<PackageReference Include="Ionic.Zip" Version="1.9.1.8" />
|
|
<PackageReference Include="Markdig" Version="0.17.1" />
|
|
<PackageReference Include="System.Security.Permissions" />
|
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.5.1" />
|
|
</ItemGroup>
|
|
</Project>
|