void GenerateMonoCommandLine(string arguments)
        {
            Arguments = String.Format(
                "--runtime=v4.0 \"{0}\" {1}",
                PaketApplicationPath.GetPath(),
                arguments);

            Command = Path.Combine(monoRuntime.Prefix, "bin", "mono");
        }
 void GenerateWindowsCommandLine(string arguments)
 {
     Arguments = arguments;
     Command   = PaketApplicationPath.GetPath().ToString();
 }