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
if (!isDotnetOnPath()) {
const getDotNetMessage = "Get .NET CLI tools";
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.",
getDotNetMessage).then(value => {
Two possible fixes:
Instead of downloading the debugger on C# extension activation, we download it when opening a .NET Core App or when they first try to start debugging.
Instead of using an error message, maybe we can use a different piece of VS Code UI that lets the user pick 'never show me this again'.
The text was updated successfully, but these errors were encountered:
- 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.
Steps to reproduce
Install the C# extension for the purposes of Unity development
Open a Unity Project
Expected behavior
No reference to the .NET CLI since you aren't working on a scenario involving .NET Core
Possible fixes
The code for this is in active.ts:
Two possible fixes:
The text was updated successfully, but these errors were encountered: