-
Notifications
You must be signed in to change notification settings - Fork 0
/
brandom.csproj
25 lines (25 loc) · 998 Bytes
/
brandom.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<ToolCommandName>brandom</ToolCommandName>
<PackAsTool>true</PackAsTool>
<PackageOutputPath>.\nupkg</PackageOutputPath>
<PackageId>brendanlynn.brandom</PackageId>
<Version>1.1.0</Version>
<Authors>Brendan Lynn</Authors>
<Description>
A CLI for users to quickly and conveniently generate large or type-specific random numbers.
</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/brendanlynn/brandom/</RepositoryUrl>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
<None Include="LICENSE.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>