muhammadsammy / free-vscode-csharp

Free/Libre fork of the official C# extension for vscode

Home Page:https://open-vsx.org/extension/muhammad-sammy/csharp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Could not find a debug adapter

Palmer-- opened this issue · comments

VSCodium produce the follow error when trying to start a debug session:
Couldn't find a debug adapter descriptor for debug type 'dotnet' (extension might have failed to active)

Extension was installed from Marketplace.
image

Building and running a 'hello world' C# project works without issues.

launch.json

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "C#: Debug",
            "type": "dotnet",
            "request": "launch",
            "projectPath": "${workspaceFolder}/hello_world.csproj"
        },
    ]
}

installed dotnet sdks:
8.0.105

VSCodium version:
1.89.1

Please advice on how to get a debugger running and connect or how to proceed.
Big thank you in advance for any help or insight!