muhammadsammy / free-vscode-csharp

Free/Libre fork of the official C# extension for vscode
https://open-vsx.org/extension/muhammad-sammy/csharp
Other
110 stars 10 forks source link

Could not find a debug adapter #71

Open Palmer-- opened 1 month ago

Palmer-- commented 1 month ago

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!