我在VS CODE中创建了一个控制台应用程序,并配置CoreClr来调试代码。我点击运行时能够看到输出。但是调试器没有附加到断点。请建议我也这样做。我不会使用mono或node来调试。
答案 0 :(得分:1)
project.json:
{
"version": "1.0.0-*",
"compilationOptions": {
"emitEntryPoint": true,
"debugType": "portable"
},
"dependencies": {
"NETStandard.Library":"1.0.0-rc3-*"
},
"frameworks": {
"netstandardapp1.5": {
"imports": "dnxcore50"
}
}
}
较新的安装程序:
dotnet-win-x64.1.0.0.001661.exe
完整描述:
Instructions for setting up the .NET Core debugger - EXPERIMENTAL PREVIEW