using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using Microsoft.Dnx.Runtime.Common.CommandLine; using Microsoft.DotNet.Cli.Utils; namespace Microsoft.DotNet.Cli { public class Program { private const string HelpText = @".NET Command Line Interface Usage: dotnet [common-options] [command] [arguments] Arguments: [command] The command to execute [arguments] Arguments to pass to the command Common Options (passed before the command): -v|--verbose Enable verbose output Common Commands: compile Compiles a .NET project publish Publishes a .NET project for deployment run Compiles and immediately executes a .NET project"; public static int Main(string[] args) { // CommandLineApplication is a bit restrictive, so we parse things ourselves here. Individual apps should use CLA. var verbose = false; var success = true; var command = string.Empty; var lastArg = 0; for (; lastArg < args.Length; lastArg++) { if (IsArg(args[lastArg], "v", "verbose")) { verbose = true; } else if (IsArg(args[lastArg], "h", "help")) { PrintHelp(); return 0; } else if (args[lastArg].StartsWith("-")) { Reporter.Error.WriteLine($"Unknown option: {args[lastArg]}"); success = false; } else { // It's the command, and we're done! command = args[lastArg]; break; } } if (!success) { PrintHelp(); return 1; } var appArgs = (lastArg + 1) >= args.Length ? Enumerable.Empty() : args.Skip(lastArg + 1).ToArray(); if (string.IsNullOrEmpty(command) || command.Equals("help", StringComparison.OrdinalIgnoreCase)) { return RunHelpCommand(appArgs); } return Command.Create("dotnet-" + command, appArgs) .EnvironmentVariable(CommandContext.Variables.Verbose, verbose.ToString()) .EnvironmentVariable(CommandContext.Variables.AnsiPassThru, bool.TrueString) .ForwardStdErr() .ForwardStdOut() .Execute() .ExitCode; } private static int RunHelpCommand(IEnumerable appArgs) { if (appArgs.Any()) { return Command.Create("dotnet-" + appArgs.First(), "--help") .ForwardStdErr() .ForwardStdOut() .Execute() .ExitCode; } else { PrintHelp(); return 0; } } private static void PrintHelp(string errorMessage = null) { if(!string.IsNullOrEmpty(errorMessage)) { Reporter.Error.WriteLine(errorMessage.Red()); } Reporter.Output.WriteLine(HelpText); } private static bool IsArg(string candidate, string shortName, string longName) { return candidate.Equals("-" + shortName) || candidate.Equals("--" + longName); } } }