Skip to content

Commit 3e7eecb

Browse files
Stop activating the C# extension on all debugging
This updates the C# extension to activate only on debugging operations that involve C# scenarios.
1 parent e224b9c commit 3e7eecb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "csharp",
33
"publisher": "ms-vscode",
4-
"version": "1.17.1",
4+
"version": "1.18.0-beta1",
55
"description": "C# for Visual Studio Code (powered by OmniSharp).",
66
"displayName": "C#",
77
"author": "Microsoft Corporation",
@@ -325,7 +325,9 @@
325325
"vscode": "^1.28.0"
326326
},
327327
"activationEvents": [
328-
"onDebug",
328+
"onDebugInitialConfigurations",
329+
"onDebugResolve:coreclr",
330+
"onDebugResolve:clr",
329331
"onLanguage:csharp",
330332
"onLanguage:aspnetcorerazor",
331333
"onCommand:o.restart",

0 commit comments

Comments
 (0)