forked from manfromarce/DocSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDocSharp.Markdown.csproj
More file actions
36 lines (29 loc) · 1.13 KB
/
DocSharp.Markdown.csproj
File metadata and controls
36 lines (29 loc) · 1.13 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0;net462</TargetFrameworks>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<!-- NuGet package -->
<PropertyGroup>
<AssemblyName>DocSharp.Markdown</AssemblyName>
<AssemblyTitle>DocSharp.Markdown</AssemblyTitle>
<PackageId>DocSharp.Markdown</PackageId>
<Title>DocSharp.Markdown</Title>
<Description>.NET library for converting documents. The DocSharp.Markdown package provides Markdown to DOCX and RTF conversion.</Description>
<PackageTags>markdown docx rtf convert converter markdig renderer openxml office word</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Remove="Docx\Resources\markdown-template.docx" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Docx\Resources\markdown-template.docx" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Markdig" Version="0.44.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DocSharp.Docx\DocSharp.Docx.csproj" />
</ItemGroup>
</Project>