-
Notifications
You must be signed in to change notification settings - Fork 0
/
dotnet-toast.csproj
28 lines (23 loc) · 1.12 KB
/
dotnet-toast.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
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<ToolCommandName>toast</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<PackageType>DotNetCliTool</PackageType>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>dotnet-toast</PackageId>
<Version>1.0.0</Version>
<Description>.NET Core global CLI tool to create toast notifications on Windows 8 / 8.1 / 10</Description>
<Authors>Rohith Reddy</Authors>
<PackageProjectUrl>https://github.com/rohith/dotnet-toast</PackageProjectUrl>
<RepositoryUrl>https://github.com/rohith/dotnet-toast</RepositoryUrl>
<PackageTags>dotnet, cli, dotnet-cli, global, tool, windows, toast, notification, nuget, package</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.18362.2005" />
</ItemGroup>
</Project>