feat: rename executable to scrl

This commit is contained in:
Marcello 2023-01-27 16:27:08 +01:00
parent d10340a644
commit 38eb93354f
Signed by: m-lamonaca
SSH key fingerprint: SHA256:8db8uii6Gweq7TbKixFBioW2T8CbgtyFETyYL3cr3zk
5 changed files with 7 additions and 7 deletions

View file

@ -4,7 +4,7 @@ using Spectre.Console;
using Spectre.Console.Cli;
var app = new CommandApp<RootCommand>();
app.Configure(x => x.SetApplicationName("script-launcher"));
app.Configure(x => x.SetApplicationName("scrl"));
return app.Run(args);
sealed class RootCommand : AsyncCommand<RootCommandSettings>

View file

@ -5,9 +5,9 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.1.1</Version>
<Version>0.1.2</Version>
<PackAsTool>true</PackAsTool>
<ToolCommandName>script-launcher</ToolCommandName>
<ToolCommandName>scrl</ToolCommandName>
</PropertyGroup>
<ItemGroup>