Dotnet xUnit中的调试测试不会在断点处中断

时间:2016-08-27 02:26:41

标签: visual-studio-code xunit

我正在使用dotnet核心,VS Code和xUnit进行测试。

我可以运行测试,但是当我尝试调试测试时,它不会在断点处中断?

enter image description here

我需要做什么才能让它在断点处突破?

1 个答案:

答案 0 :(得分:0)

好的,发现了问题。我使用的是跨平台的.NET Core调试器,它不支持Windows PDB。

通过将project.json更改为包含" debugType":" portable"

,可以轻松解决此问题。
"buildOptions": {
  "emitEntryPoint": true,
  "preserveCompilationContext": true,
  "debugType": "portable"
},