【发布时间】:2017-01-03 18:01:10
【问题描述】:
【问题讨论】:
【问题讨论】:
好的,找到问题了。我正在使用不支持 Windows PDB 的跨平台 .NET Core 调试器。
通过将 project.json 更改为包含 "debugType":"portable" 可以轻松解决此问题
"buildOptions": {
"emitEntryPoint": true,
"preserveCompilationContext": true,
"debugType": "portable"
},
【讨论】: