Viewing application/x-csharp
using System;
using System.Collections.Generic;
namespace Net.XpFramework.Runner
{
class BaseRunner
{
protected static void Execute(string runner, string tool, string[] includes, string[] args)
{
try
{
Environment.Exit(Executor.Execute(Paths.DirName(Paths.Binary()), runner, tool, includes, args));
}
catch (Exception e)
{
Console.Error.WriteLine("*** " + e.GetType() + ": " + e.Message);
Environment.Exit(0xFF);
}
}
}
}
|
Download
You can download the file
«BaseRunner.cs»
by using
this link.
|