I am configuring Spectre.Console for the first time. Let's say the project name is "Awesome Console App", this is a console template, and I use AssemblyName tag, so .csproj file looks like this:
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<AssemblyName>awesome-console-app</AssemblyName>
</PropertyGroup>
The help output looks like this - I see the extension .dll under the usage line:
USAGE:
awesome-console-app.dll [OPTIONS] <COMMAND>
OPTIONS:
-h, --help Prints help information
-v, --version Prints version information
COMMANDS:
init
But I want to see "awesome-console-app" only, like in AssemblyName tag. How to achieve it?