Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JetBrains Rider hangs when creating solution file on Ubuntu 16.04

JetBrains Rider hangs indefinitely when creating solution file on Ubuntu 16.04. Already restarted both Rider and my system.

like image 275
codeepic Avatar asked Oct 17 '22 08:10

codeepic


2 Answers

I was getting the same issue (OS = Arch Linux). I'd also installed the dot net sdk and Rider from Snap. I had to:

  1. Remove Rider using snapd remove rider
  2. Install dotnet-sdk using sudo pacman -S dotnet-sdk
  3. Install mono using sudo pacman -S mono
  4. Download and install the Jetbrains Toolbox app and install Rider from there
like image 137
Indrajeet Roy Avatar answered Oct 21 '22 08:10

Indrajeet Roy


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.

like image 30
0x574F4F54 Avatar answered Oct 21 '22 06:10

0x574F4F54