-
-
Notifications
You must be signed in to change notification settings - Fork 279
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No default debug configuration #2009
Comments
@baronfel is this something we have to pester the C# plugin about? |
Ours should be under the .NET Core drop-down selection there, IIRC? |
The following works for me as a manual workaround to achieve F5 debugging:
{
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build FSDebugging.fsproj",
"program": "${workspaceFolder}/bin/Debug/net8.0/FSDebugging.dll",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
}
]
}
{
"version": "2.0.0",
"tasks": [
{
"label": "build FSDebugging.fsproj",
"type": "shell",
"command": "dotnet build ${workspaceFolder}/FSDebugging.fsproj",
"problemMatcher": []
}
]
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
when starting a fresh project and going to the "debug and run" pane, there's no longer any Ionide automatic configurations in the dropdowns.
Steps to reproduce
Expected behaviour
There should be Ionide configs in that dropdown.
Screenshots
Machine info
The text was updated successfully, but these errors were encountered: