Ejemplo n.º 1
0
        public void Run(TomlTable table)
        {
            var @params = new VS15Params(table);

            var path = string.Format("\"{0}\"", GetVisualStudioInstallationFolder());

            Process.Start("cmd", $@"/c start " + path + " " + @params.Path);
        }
Ejemplo n.º 2
0
        public void Run(TomlTable table)
        {
            var @params = new VS15Params(table);

            Process.Start(
                "cmd",
                $@"/c start ""C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\devenv.exe"" {@params.Path}"
                );
        }