-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShellLibrary.Cmd.csproj
More file actions
23 lines (20 loc) · 1.01 KB
/
Copy pathShellLibrary.Cmd.csproj
File metadata and controls
23 lines (20 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<OutputType>Library</OutputType>
<PackageId>ShellLibrary.Cmd</PackageId>
<Version>0.1.1</Version>
<Author>OFFMN-SHARP</Author>
<Description>一个用于 .NET 的声明式交互式 Shell 框架。通过简单的配置和命令注册,快速为应用程序嵌入功能完整的命令行界面。</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/OFFMN-SHARP/ShellLibrary.Cmd.git</PackageProjectUrl>
<PackageTags>shell;cli;interactive;command-line;framework</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/OFFMN-SHARP/ShellLibrary.Cmd.git</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>