Skip to content

Instantly share code, notes, and snippets.

@enisn
Created December 8, 2021 14:43
Show Gist options
  • Save enisn/de50455938bc20e912059d64ad5c6338 to your computer and use it in GitHub Desktop.
Save enisn/de50455938bc20e912059d64ad5c6338 to your computer and use it in GitHub Desktop.
Making MyAwesomeApp a dotnet tool.
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net5.0;net6.0</TargetFrameworks>
<PackAsTool>true</PackAsTool>
<ToolCommandName>myawesomeapp</ToolCommandName>
</PropertyGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment