// Copyright (c) .NET Foundation and contributors. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using Microsoft.DotNet.Cli.Utils; using Microsoft.DotNet.ProjectModel.Server; using Microsoft.DotNet.Tools.Build; using Microsoft.DotNet.Tools.Compiler; using Microsoft.DotNet.Tools.Compiler.Csc; using Microsoft.DotNet.Tools.Compiler.Fsc; using Microsoft.DotNet.Tools.Compiler.Native; using Microsoft.DotNet.Tools.New; using Microsoft.DotNet.Tools.Publish; using Microsoft.Extensions.PlatformAbstractions; using Microsoft.DotNet.Tools.Restore; using NuGet.Frameworks; using Microsoft.DotNet.Tools.Resgen; using Microsoft.DotNet.Tools.Run; using Microsoft.DotNet.Tools.Test; namespace Microsoft.DotNet.Cli { public class Program { private const string ProductLongName = ".NET Command Line Tools"; private const string UsageText = @"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 --version Display .NET CLI Version Info Common Commands: new Initialize a basic .NET project restore Restore dependencies specified in the .NET project build Builds a .NET project publish Publishes a .NET project for deployment (including the runtime) run Compiles and immediately executes a .NET project repl Launch an interactive session (read, eval, print, loop) pack Creates a NuGet package"; private static readonly string ProductVersion = GetProductVersion(); private static string GetProductVersion() { var attr = typeof(Program).GetTypeInfo().Assembly.GetCustomAttribute(); return attr?.InformationalVersion; } public static int Main(string[] args) { DebugHelper.HandleDebugSwitch(ref args); try { return ProcessArgs(args); } catch (CommandUnknownException e) { Console.WriteLine(e.Message); return 1; } } private static int ProcessArgs(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], "version")) { PrintVersionInfo(); return 0; } 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); } var builtIns = new Dictionary> { ["build"] = BuildCommand.Run, ["compile"] = CommpileCommand.Run, ["compile-csc"] = CompileCscCommand.Run, ["compile-fsc"] = CompileFscCommand.Run, ["compile-native"] = CompileNativeCommand.Run, ["new"] = NewCommand.Run, ["projectmodel-server"] = ProjectModelServerCommand.Run, ["publish"] = PublishCommand.Run, ["restore"] = RestoreCommand.Run, ["resgen"] = ResgenCommand.Run, ["run"] = RunCommand.Run, ["test"] = TestCommand.Run }; Func builtIn; if (builtIns.TryGetValue(command, out builtIn)) { // mimic the env variable Environment.SetEnvironmentVariable(CommandContext.Variables.Verbose, verbose.ToString()); Environment.SetEnvironmentVariable(CommandContext.Variables.AnsiPassThru, bool.TrueString); return builtIn(appArgs.ToArray()); } return Command.Create("dotnet-" + command, appArgs, FrameworkConstants.CommonFrameworks.DnxCore50) .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(), new string[] { "--help" }) .ForwardStdErr() .ForwardStdOut() .Execute() .ExitCode; } else { PrintHelp(); return 0; } } private static void PrintHelp() { PrintVersionHeader(); Reporter.Output.WriteLine(UsageText); } private static void PrintVersionHeader() { var versionString = string.IsNullOrEmpty(ProductVersion) ? string.Empty : $" ({ProductVersion})"; Reporter.Output.WriteLine(ProductLongName + versionString); } private static void PrintVersionInfo() { PrintVersionHeader(); var runtimeEnvironment = PlatformServices.Default.Runtime; Reporter.Output.WriteLine("Runtime Environment:"); Reporter.Output.WriteLine($" OS Name: {runtimeEnvironment.OperatingSystem}"); Reporter.Output.WriteLine($" OS Version: {runtimeEnvironment.OperatingSystemVersion}"); Reporter.Output.WriteLine($" OS Platform: {runtimeEnvironment.OperatingSystemPlatform}"); Reporter.Output.WriteLine($" Runtime Id: {runtimeEnvironment.GetRuntimeIdentifier()}"); } private static bool IsArg(string candidate, string longName) { return IsArg(candidate, shortName: null, longName: longName); } private static bool IsArg(string candidate, string shortName, string longName) { return (shortName != null && candidate.Equals("-" + shortName)) || (longName != null && candidate.Equals("--" + longName)); } } }