Rename
This commit is contained in:
15
DotNetSolutionTools.CLI/Program.cs
Normal file
15
DotNetSolutionTools.CLI/Program.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using DotNetSolutionTools.CLI.Commands;
|
||||
using Spectre.Console.Cli;
|
||||
|
||||
var app = new CommandApp();
|
||||
app.Configure(config =>
|
||||
{
|
||||
config.SetApplicationName("SolutionParityChecker");
|
||||
config.ValidateExamples();
|
||||
|
||||
config.AddCommand<CompareCommand>("compare");
|
||||
config.AddCommand<ImplicitUsingsCommand>("implicit-usings");
|
||||
config.AddCommand<FormatCsprojCommand>("format-csproj");
|
||||
});
|
||||
|
||||
return await app.RunAsync(args);
|
||||
Reference in New Issue
Block a user