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

            Command = Path.Combine(monoRuntime.Prefix, "bin", "mono");
        }
コード例 #2
0
 void GenerateWindowsCommandLine(string arguments)
 {
     Arguments = arguments;
     Command   = PaketApplicationPath.GetPath().ToString();
 }