You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While trying to debug a f# console application the break points are not hitting, its just launching the application in VSCode debug mode and finishing the execution.
@vrnithinkumar your launch.json contains two configurations: one for launching the target (name: "Launch"), one for attaching to an already launched target (name: "Attach"). They are independent from each other.
From the debug console output I see that you are using the "Launch" launch configuration. In this launch configuration no "port" is specified and mono-debug will use a random port (54579 in your case). So there is no port mismatch.
How did you compile your F# program?
Make sure that you compile it for debugging.
While trying to debug a f# console application the break points are not hitting, its just launching the application in VSCode debug mode and finishing the execution.
VS Code : 1.10.2
Mono Debug : 0.15.3
launch.json
DEBUG CONSOLE Output:
mono --debug --debugger-agent=transport=dt_socket,server=y,address=127.0.0.1:54579 C:/FSharp/test/TestFharp/bin/Debug/TestFharp.exe "Test Arg"
Link to Stack Overflow question : http://stackoverflow.com/questions/42929225/breakpoints-are-not-hitting-while-debugging-f-console-application-in-vscode-usi
The text was updated successfully, but these errors were encountered: