标签: visual-studio-code xunit
我正在使用dotnet核心,VS Code和xUnit进行测试。
我可以运行测试,但是当我尝试调试测试时,它不会在断点处中断?
我需要做什么才能让它在断点处突破?
答案 0 :(得分:0)
好的,发现了问题。我使用的是跨平台的.NET Core调试器,它不支持Windows PDB。
通过将project.json更改为包含" debugType":" portable"
"buildOptions": { "emitEntryPoint": true, "preserveCompilationContext": true, "debugType": "portable" },