You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add suppressDotnetInstallWarning user setting (#700)
- Add a user option to suppress the "Get .NET CLI tools" popup that appears when the tools are not found.
- Add a navigation point to the settings page to the popup.
Fix for #603.
Copy file name to clipboardExpand all lines: src/coreclr-debug/activate.ts
+16-8Lines changed: 16 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -90,14 +90,22 @@ export function activate(context: vscode.ExtensionContext, reporter: TelemetryRe
90
90
_util.closeInstallLog();
91
91
});
92
92
}).catch(()=>{
93
-
constgetDotNetMessage="Get .NET CLI tools";
94
-
vscode.window.showErrorMessage("The .NET CLI tools cannot be located. .NET Core debugging will not be enabled. Make sure .NET CLI tools are installed and are on the path.",
constgoToSettingsMessage='Disable this message in user settings';
97
+
// Buttons are shown in right-to-left order, with a close button to the right of everything;
98
+
// getDotNetMessage will be the first button, then goToSettingsMessage, then the close button.
99
+
vscode.window.showErrorMessage('The .NET CLI tools cannot be located. .NET Core debugging will not be enabled. Make sure .NET CLI tools are installed and are on the path.',
0 commit comments