这是launch.json文件的副本:
{
"version": "0.2.0",
"configurations": [{
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceRoot}/bin/Debug/netcoreapp1.0/hwapp.dll",
"args": [],
"cwd": "${workspaceRoot}",
"stopAtEntry": false,
"externalConsole": false
},
{
"name": ".NET Core Launch (web)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceRoot}/bin/Debug/netcoreapp1.0/hwapp.dll",
"args": [],
"cwd": "${workspaceRoot}",
"stopAtEntry": false,
"launchBrowser": {
"enabled": true,
"args": "${auto-detect-url}",
"windows": {
"command": "cmd.exe",
"args": "/C start ${auto-detect-url}"
},
"osx": {
"command": "open"
},
"linux": {
"command": "xdg-open"
}
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceRoot}/Views"
}
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command.pickProcess}"
}
]
}
这是tasks.json文件的副本:
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "dotnet",
"isShellCommand": true,
"args": [],
"tasks": [
{
"taskName": "build",
"args": [ ],
"isBuildCommand": true,
"showOutput": "silent",
"problemMatcher": "$msCompile"
}
]
}
我如何解决这个问题?PLS
答案 0 :(得分:0)
如果您使用的是MacPorts,那么这可能就是您的问题,(这适合我)。
我已在我的.zshrc
或.profile
等中将此链接到MacSorts版本的OpenSSL:
export DYLD_FALLBACK_LIBRARY_PATH=/opt/local/lib:~/lib:/usr/local/lib:/lib:/usr/lib
.NET Core可以从这里开始工作。
VSCode OR Rider都不会通过进行调试(我得到你得到的错误)。
我的问题是OmniSharp,这里是引发错误的文件的link。您可以通过在VSCode的命令托盘中输入Debug: Download .NET Core Debugger
来验证安装失败:
为了解决这个问题,我为OpenSSL 创建了两个符号链接(不是超级优雅,但是......):
(您可能不再需要使用这些符号链接进行上述导出)
% sudo ln -s /opt/local/lib/libcrypto.1.0.0.dylib /usr/local/lib/
% sudo ln -s /opt/local/lib/libssl.1.0.0.dylib /usr/local/lib/
然后我重新安装了VSCode的C#插件,并在命令托盘中重新执行了Debug: Download .NET Core Debugger
。我现在可以在两个VSCode和Rider中进行调试。
* 如果这对您不起作用,您可以从上面的VSCode命令中获得一些有用的输出/信息。
答案 1 :(得分:-1)
有相同的问题,我必须下载控制台错误中指定的版本。接着 请按照此链接中的步骤进行操作。.确保打开新的命令提示符以执行命令