forked from manfromarce/DocSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDocSharp.Binary.Common.csproj
More file actions
26 lines (22 loc) · 984 Bytes
/
DocSharp.Binary.Common.csproj
File metadata and controls
26 lines (22 loc) · 984 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0;net462</TargetFrameworks>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<AssemblyName>DocSharp.Binary.Common</AssemblyName>
<AssemblyTitle>DocSharp.Binary.Common</AssemblyTitle>
<PackageId>DocSharp.Binary.Common</PackageId>
<Title>DocSharp.Binary.Common</Title>
<Description>.NET library for converting documents (Open XML, Office 97-2003, RTF, Markdown).</Description>
<PackageTags>doc xls ppt convert</PackageTags>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' != 'net462'">
<PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
<PackageReference Include="System.IO.Compression" Version="4.3.0" />
</ItemGroup>
</Project>