Example #1
0
        public void Run(TomlTable table)
        {
            var @params = new VS17Params(table);

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

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

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