Skip to content

Debug: Variable values are not shown #5

@skurth

Description

@skurth

I've a problem that variable values are not shown. Debugging (stepping with F10, breakpoints) works correctly, but when I hover a variable, the value is not shown. Also the variables are not shown in "Watch" area:

Image Image

launch.json:
{ "version": "0.2.0", "configurations": [ { "name": ".NET Core Launch (console)", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/bin/Debug/net10.0-windows/VBNetTestApp.exe", "args": [], "cwd": "${workspaceFolder}", "stopAtEntry": false, "console": "internalConsole", "justMyCode": false, "requireExactSource": false, "env": { "DOTNET_MODIFIABLE_ASSEMBLIES": "debug" } } ] }

tasks.json:
{ "version": "2.0.0", "tasks": [ { "label": "build", "command": "dotnet", "type": "shell", "args": [ "build", "${workspaceFolder}/VBNetTestApp.vbproj", "/p:Configuration=Debug", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], "group": { "kind": "build", "isDefault": true }, "presentation": { "reveal": "silent" }, "problemMatcher": "$msCompile" } ] }

Can you help me what I'm missing?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions