-
Notifications
You must be signed in to change notification settings - Fork 2
Description
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:
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?