Reputation: 4122
JetBrains Rider hangs indefinitely when creating solution file on Ubuntu 16.04. Already restarted both Rider and my system.
Upvotes: 7
Views: 2387
Reputation: 41
I was getting the same issue (OS = Arch Linux). I'd also installed the dot net sdk and Rider from Snap. I had to:
snapd remove rider
sudo pacman -S dotnet-sdk
sudo pacman -S mono
Upvotes: 4
Reputation: 440
In my case I found that my virtual machine did not have Mono installed. Killing and restarting the Rider
process and selecting another project type prompted me to install mono using this URL: https://www.mono-project.com/download/stable/#download-lin-debian
With Mono installed I had to restart Rider
once more before it would let me create an empty solution without hanging.
Upvotes: 1
Reputation: 4122
I was able to bypass this problem by choosing ASP.NET Web Application
instead of Empty Solution
.
Upvotes: 0