Reputation: 1155
In these days I'm trying these projects: - Visual Studio Code: I chosethe portable (.zip) executed from USB memory. - .Net Core (.zip package again), which I decomprissed into the same USB memory as the previous one.
When I try to generate a new C# into VSCode project, first I had the problem around how to invoke the .Net core folder (aka dotnet decomprissed folder). Until now, just I had to put in the console the absolute path location of the dotnet executable -again, from the folder I decomprissed from the zip file-.
But then I try to debug the console application after these commands:
dotnet new
dotnet restore
dotnet build
I see the following error:
The .NET Core Debugger is still being downloaded. See the C# Output Window
for more information.
[ERROR]: C# Extension failed to install the debugger package
How can I solve this?
Upvotes: 1
Views: 1688
Reputation: 956
Just saw this error on my PC too, turns out as of now the C# debugger doesn't support 32-bit Windows system, there is an issue on GitHub: https://github.com/OmniSharp/omnisharp-vscode/issues/844.
Check if you are using a 32-bit Windows, if yes, upgrade to x64.
Upvotes: 1