clean up for mailing
This commit is contained in:
parent
acdec2b6f7
commit
72bf0f458d
14 changed files with 2934 additions and 116 deletions
|
|
@ -1,28 +0,0 @@
|
|||
|
||||
using cli.Model;
|
||||
using Microsoft.Extensions.CommandLineUtils;
|
||||
|
||||
namespace cli
|
||||
{
|
||||
|
||||
public class CiBuildCommand : ICommander
|
||||
{
|
||||
public CommandLineApplication Integrate(CommandLineApplication rootApp)
|
||||
{
|
||||
CommandLineApplication ciBuildApp = rootApp.Command("build",
|
||||
(target) =>
|
||||
{
|
||||
target.FullName = "Build this project.";
|
||||
target.Description = "Build this project, as specified in .paul-ci.json";
|
||||
target.HelpOption("-? | -h | --help");
|
||||
}, false);
|
||||
ciBuildApp.OnExecute(()=>
|
||||
{
|
||||
|
||||
|
||||
return 0;
|
||||
});
|
||||
return ciBuildApp;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -119,7 +119,6 @@ namespace cli
|
|||
new SendMailCommandProvider().Integrate(cliapp);
|
||||
new GenerateJsonSchema().Integrate(cliapp);
|
||||
new AuthCommander(loggerFactory).Integrate(cliapp);
|
||||
new CiBuildCommand().Integrate(cliapp);
|
||||
new GenerationCommander().Integrate(cliapp);
|
||||
new Streamer(loggerFactory, cxSettings, usercxSettings ).Integrate(cliapp);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue