JetBrains Rider未检测到mono或Unity API



我正在努力让JetBrains Rider 2020.3在Ubuntu 20.04.2上正常工作。我已经从这个网站安装了mono和dotNet以下链接(https://rider-support.jetbrains.com/hc/en-us/articles/207335749-Using-Project-Rider-under-Linux-prerequisites)。

Rider检测mono、.net CLI和MSBuild 16,但当我创建新的"控制台应用程序"时,Rider甚至无法识别"系统"命名空间。

这是我的依赖项控制台输出。

~> dotnet --list-sdks
5.0.201 [/usr/share/dotnet/sdk]
~> mono --version
Mono JIT compiler version 6.8.0.105 (Debian 6.8.0.105+dfsg-2 Wed Feb 26 23:23:50 UTC 2020)
Copyright (C) 2002-2014 Novell, Inc, Xamarin Inc and Contributors. www.mono-project.com
TLS:           __thread
SIGSEGV:       altstack
Notifications: epoll
Architecture:  amd64
Disabled:      none
Misc:          softdebug
Interpreter:   yes
LLVM:          supported, not enabled.
Suspend:       hybrid
GC:            sgen (concurrent by default)
~> dotnet --version
5.0.201`

已解决!

我不得不添加

export FrameworkPathOverride=/usr/lib/mono/4.5/

由于SDK错误,导致.xprofile文件。

相关内容

  • 没有找到相关文章

最新更新