-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCliman.csproj
23 lines (22 loc) · 983 Bytes
/
Climan.csproj
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>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<PackAsTool>true</PackAsTool>
<ToolCommandName>cm</ToolCommandName>
<PackageOutputPath>.\nupkg</PackageOutputPath>
</PropertyGroup>
<PropertyGroup>
<PackageId>Climan</PackageId>
<Version>1.1.0</Version>
<Authors>Tony Quach</Authors>
<PackageProjectUrl>https://github.com/quachhengtony/climan.net</PackageProjectUrl>
<PackageTags>cli terminal command-line devtool automation command</PackageTags>
<Description>Climan is a nuget package that automates repetitive and tedious commands for you by allowing you to create, store, and manage CLI commands that can be executed using Climan's cm shorthand.</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>