public Commands(IStatusInformer logger, string rootPath, string buildPath) { compiler = new Compiler(logger); Logger = logger; var config = new Config.Config(); MobileNetConfig = config.DeSerialize(Directory.GetCurrentDirectory() + "\\MobileNet.config"); ChangeRootPath(rootPath, buildPath); }
public static string ExecuteCommandSyncStatic(string command, bool useShellWindow) { Compiler c = new Compiler(new DefaultStatusInformer()); return c.ExecuteCommandSync(command, useShellWindow); }