-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCLIGuidGenerator.csproj
More file actions
22 lines (22 loc) · 987 Bytes
/
CLIGuidGenerator.csproj
File metadata and controls
22 lines (22 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.0.1</Version>
<PackAsTool>true</PackAsTool>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<ToolCommandName>cli-guid-generate</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<RootNamespace>GuidGenerator</RootNamespace>
<RepositoryUrl>https://github.com/JamesLoyd/CLIGuidGeneratorTool</RepositoryUrl>
<Authors>James Loyd</Authors>
<Description>CLI tool for generating GUIDs</Description>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Include="readme.md" Pack="true" PackagePath="\"/>
<None Include="LICENSE" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>