Manos.Tool.Driver.RunBuild C# (CSharp) Method

RunBuild() public method

public RunBuild ( ) : void
return void
        public void RunBuild()
        {
            BuildCommand cmd = new BuildCommand (Environment);

            cmd.Run ();
        }

Usage Example

示例#1
0
        private static int Build(IList <string> args)
        {
            Driver d = new Driver();

            try {
                d.RunBuild();
            } catch (Exception e) {
                Console.WriteLine("error while building application:");
                Console.WriteLine(e);
                return(1);
            }

            return(0);
        }
All Usage Examples Of Manos.Tool.Driver::RunBuild