dotnet运行使我“ ***检测到堆栈崩溃***:<未知>已终止”

时间:2019-10-19 02:17:10

标签: c# .net-core

我正在运行Ubuntu 64位linux。

No LSB modules are available.
Distributor ID: Ubuntu
Description:    Pop!_OS 18.10
Release:    18.10
Codename:   cosmic

dotnet version:  3.0.100

我创建一个名为“ test”的文件夹。

我进入测试。

然后我运行:

dotnet new console
dotnet run

控制台返回:

*** stack smashing detected ***: <unknown> terminated

我不确定该怎么做。

1 个答案:

答案 0 :(得分:6)

这是一个已知的问题,如here所示。

解决方法是直接运行.dll,如下所示:

dotnet bin/Debug/netcoreapp3.0/[your-application.dll]