-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHelpLine.Docs.csproj
More file actions
29 lines (25 loc) · 1.17 KB
/
Copy pathHelpLine.Docs.csproj
File metadata and controls
29 lines (25 loc) · 1.17 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>HelpLine.Docs</AssemblyName>
<RootNamespace>HelpLine.Docs</RootNamespace>
<PackageId>HelpLine.Docs</PackageId>
<VersionPrefix>0.1.0</VersionPrefix>
<VersionSuffix>alpha</VersionSuffix>
<Description>Embedded docs for your CLI using Markdown and System.CommandLine.</Description>
<PackageTags>System.CommandLine;Help;CLI;Markdown;Docs</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Markdig.Signed" />
<PackageReference Include="Spectre.Console" />
<PackageReference Include="System.CommandLine" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="..\..\artwork\package-icon.png" Pack="true" PackagePath="icon.png" Visible="false" />
</ItemGroup>
<ItemGroup>
<Content Include="buildTransitive\**\*" Pack="true" PackagePath="buildTransitive\%(RecursiveDir)%(Filename)%(Extension)" Link="buildTransitive\%(RecursiveDir)%(Filename)%(Extension)" />
</ItemGroup>
</Project>