解决办法来自:https://github.com/dotnet/core-setup/issues/3931
在openSUSE上弄好了.net Core SDK之后
输入命令:
dotnet new xxxx
回车,如果出现如下问题:
No usable version of the libssl was found
Aborted (core dumped)
这是因为openSUSE上的libopenssl是1.1.0的,对于.net Core环境来说太新了,解决办法是安装一个1.0.0的旧版本libopenssl:
zypper in libopenssl1_0_0
然后就可以愉快地开始工作了。