Build.Shell.dotnet C# (CSharp) 메소드

dotnet() 공개 정적인 메소드

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

            run("dotnet", command);
        }