コード例 #1
0
ファイル: InstallCommandParser.cs プロジェクト: wei12/cli
 public static Command Install()
 {
     return(Create.Command(
                "install", "",
                Accept.NoArguments(),
                CommonOptions.HelpOption(),
                InstallToolCommandParser.InstallTool()));
 }
コード例 #2
0
ファイル: InstallCommandParser.cs プロジェクト: yanchenw/cli
 public static Command Install()
 {
     return(Create.Command(
                "install",
                LocalizableStrings.CommandDescription,
                Accept.NoArguments(),
                CommonOptions.HelpOption(),
                InstallToolCommandParser.InstallTool()));
 }