protected async Task ExecuteCommandAsync(string command, string arguments, IConsoleHost host) { if (Simulate) { host.WriteMessage("SIMULATE " + command); } else { await ProcessUtilities.ExecuteAsync(command, arguments, Verbose); } }