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
Hello, I have a test project on .net6 and execute tests from .Net Test Explorer (v0.7.8) in VS code (1.95.3).
After migrating to .net8 tests execute from .Net Test Explorer as before, but if running test in debug mode debugger is not launching at all.
The text was updated successfully, but these errors were encountered:
rolshevskyi-cvet
changed the title
Debugger stopped launching after swithing project to .net8
Debugger stopped launching after switching project to .net8
Nov 20, 2024
For anyone how will face the same issue, the following workaround worked for me:
Uninstall '.NET Core Test Explorer' extension
Install 'IntelliCode for C# Dev Kit' extension (C# Dev Kit extension should be enough, but IntelliCode is recommended)
Add the following to .vscode/settings.json: "dotnet.defaultSolution": "<SolutionName>.sln", "dotnet.unitTests.runSettingsPath": ".runsettings", - path to .runsettings file from a solution directory level
Use standard VS Code Test Explorer for running and debugging tests
Hello, I have a test project on .net6 and execute tests from .Net Test Explorer (v0.7.8) in VS code (1.95.3).
After migrating to .net8 tests execute from .Net Test Explorer as before, but if running test in debug mode debugger is not launching at all.
Execution environment:
Microsoft.AspNetCore.App 8.0.11,
Microsoft.NETCore.App 8.0.11,
Microsoft.WindowsDesktop.App 8.0.11
.Net Test Explorer output:
Thanks in advance for any sort of assist!
The text was updated successfully, but these errors were encountered: