Merge pull request #57618 from Densorius/master

Fixed opening new instances of VS 2022 while a instance is already open
This commit is contained in:
Ignacio Roldán Etcheverry 2022-02-04 15:05:51 +01:00 committed by GitHub
commit 721c32ee2b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -183,7 +183,7 @@ namespace GodotTools.OpenVisualStudio
continue;
// The digits after the colon are the process ID
if (!Regex.IsMatch(ppszDisplayName, "!VisualStudio.DTE.16.0:[0-9]"))
if (!Regex.IsMatch(ppszDisplayName, "!VisualStudio.DTE.1[6-7].0:[0-9]"))
continue;
if (pprot.GetObject(moniker[0], out object ppunkObject) == 0)