Build.Shell.dotnet C# (CSharp) Method

dotnet() public static method

public static dotnet ( string command ) : void
command string
return void
        public static void dotnet(string command)
        {
            using (Foreground.Cyan)
                Console.WriteLine($"Executing dotnet {command}");

            run("dotnet", command);
        }