forked from Jan0660/DocFxMarkdownGen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDocFxMarkdownGen.csproj
More file actions
24 lines (21 loc) · 926 Bytes
/
DocFxMarkdownGen.csproj
File metadata and controls
24 lines (21 loc) · 926 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Version>0.5.0</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Description>Docusaurus Markdown generator using DocFX.</Description>
<RepositoryUrl>https://github.com/Jan0660/DocFxMarkdownGen</RepositoryUrl>
<PackAsTool>true</PackAsTool>
<ToolCommandName>dfmg</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Log73" Version="0.7.0" />
<PackageReference Include="YamlDotNet" Version="13.1.0" />
<Compile Remove="examples\**" />
<None Remove="examples\**\*" />
</ItemGroup>
</Project>