summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDensorius <d_angevaare@live.nl>2022-02-04 10:38:28 +0100
committerDensorius <d_angevaare@live.nl>2022-02-04 10:40:43 +0100
commit93e2d0446fb7b3eb4dbf875a488b8506fb1e73ff (patch)
treea13e7838b1f1bea8691d51e1809442fce57155c8 /modules
parent9ea0508d35fa747b81b327e41969f926633d768f (diff)
Fixed opening new instances of VS 2022 while a instance is already open
Diffstat (limited to 'modules')
-rw-r--r--modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/Program.cs b/modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/Program.cs
index f29b339c0e..7a4641dbbc 100644
--- a/modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/Program.cs
+++ b/modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/Program.cs
@@ -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)