'Where's NuGet manager console in Rider IDE?
I am new to .NET platform. From time to time, I had problems with Visual Studio and I decided to use Rider. It encouraged me again (I have been using JetBrains products for 2 years). But I can not find the NuGet console (which is so called in Visual Studio).
Where is it?
Solution 1:[1]
It's not accessible yet. Please vote this issue https://youtrack.jetbrains.com/issue/RIDER-435
Solution 2:[2]
It is available since Rider 2018.1.
Please see JetBrains' blog post about installation: https://blog.jetbrains.com/dotnet/2018/04/06/entity-framework-support-rider-2018-1/
P.S. tested on Rider 2020.2.1.
Solution 3:[3]
You Can use PowerShell on Windows "Where Your DbContext is" Like this:
dotnet ef
dotnet ef migrations add [Name]
Solution 4:[4]
They haven't implemented the Package manager console yet. So you will have to use Visual studio for that
Solution 5:[5]
If you need to run entity framework commands such as
dotnet ef migrations add "initialSetup"
Then go to your terminal Alt+f12 or double-shift and type “terminal”.
Then run:
dotnet tool install --global dotnet-ef
And then (making sure you're in your project directory):
dotnet ef migrations add "initialSetup"
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Ali Dehqan |
| Solution 2 | |
| Solution 3 | behzad chhizari |
| Solution 4 | Jonas Goossens |
| Solution 5 | Luke Garrigan |

