1,315 questions
83
votes
3
answers
24k
views
IntelliJ IDE (Rider, Android Studio...) - how to hide "usage" links above properties/methods/etc
IntelliJ Rider IDE version 2022.1:
Above class properties or methods I have this link called "usages".
How do I turn the "usages"-link off?
They are driving me crazy. I don't know ...
50
votes
3
answers
29k
views
Resharper Clean-up Code - how to affect sorting of methods?
I've got a customized clean-up and it's almost 'there'.
However, R# appears to want to sort the member methods, but at least it does not appear to be alphabetically.
Is there a way to force that ...
43
votes
7
answers
64k
views
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 ...
37
votes
14
answers
55k
views
Breakpoints not being hit in JetBrains Rider?
I am trying to set a breakpoint in JetBrains Rider, but the debugger isn't breaking.
I know for sure the application should reach the code I'm trying to break on, as changing string literals appears ...
34
votes
2
answers
23k
views
How to git stage changes in JetBrains IDE or similar functionality
How to add files to git stage in JetBrains Rider? Is this feature implemented? If it's not implemented then in which window can I look through the staged files which I've staged using some external ...
31
votes
3
answers
14k
views
Does Rider has the "Just My Code" debugging option?
Rider makes it easy to debug the 3rd party code. But sometimes it is just too much noise when debugging my own code.
VS has the option "Just My Code" which lets us debug only our code. Does Rider has ...
30
votes
5
answers
36k
views
JetBrains Rider - configure appsettings overrides
I am trying JetBrains Rider for my existing .NET Core project. In the project I have several appsettings.json overrides:
appsettings.Development.json - for development
appsettings.Test.json - for ...
28
votes
3
answers
16k
views
JetBrains Rider EAP on Linux - Solution load failed: MsBuild not found
Just installed the latest version of Rider EAP (163.12057) and tried to create a new solution.
In my Solution Explorer its shows my Solution and (load failed).
In the Event Log window I get the error ...
26
votes
4
answers
12k
views
JetBrains Rider to stop opening diff tab on navigation
I am a huge fan of JetBrains Rider it is really adaptable to the tastes of most devs. I could not find settings to remove an annoyance from a specific navigation function.
Navigating on the tree view ...
24
votes
2
answers
13k
views
Project Rider - Break on Exception
I can't find the option in JetBrains Project Rider to "Break on Exception". Where I would normally add an exception breakpoint in IntelliJ, I see this:
23
votes
6
answers
27k
views
How to specify a base url or host port for JetBrains Rider ASP.NET project
I have a C# ASP.NET web project made in Visual Studio.
The project runs on a certain port (57243) and I made other programs that were testing the web service to use "localhost:57243".
...
23
votes
4
answers
43k
views
The Specified SDK "Microsoft.NET.Sdk" was not Found
So I'm using Rider without Visual Studio installed and its working fine for .NET
but for .NET Core I'm getting the error:
Project 'Test2' load failed: Das angegebene SDK "Microsoft.NET.Sdk" ...
22
votes
4
answers
32k
views
How to run a project in Jetbrain's Rider IDE?
I've started to learn c# recently and I really like the Jetbrains IDEs, so I decided to pick up Rider in it's early developement phase. Since it's a brand new environment I could barely find any ...
21
votes
10
answers
26k
views
JetBrains Rider unable to detect UnitTests
I am using JetBrains Rider to run unit tests for a .net Core project. And for some reason, it is failing to recognize any of the test cases in the solution.
These test cases were being detected before ...
20
votes
10
answers
29k
views
Rider cannot detect .NET core installation on Ubuntu
As instructed by the Rider IDE, I installed the .NET Core framework from Microsoft. I know that the installation was successful since I am able to run the dotnet command from my terminal. However, ...
16
votes
3
answers
7k
views
JetBrains Rider run with watch
When I press run button in Rider (net core) it run the following command:
/usr/local/share/dotnet/dotnet /pathtomyproject/myproject.dll
But I need to run the project with the argument "watch", if I ...
16
votes
1
answer
23k
views
Jetbrains Rider + Visual Studio WPF
I'm about to have a project with C# again. As I love using JetBrains IDEs, I came along Rider. The main problem for me is that I need a Windows Forms or WPF Designer for the GUI.
Is there any external ...
15
votes
4
answers
32k
views
Rider. EF Code First Migrations
Is there an easy way to scaffold migrations using old EF outside of Visual Studio? I would like to do it via Rider IDE if it possible.
14
votes
2
answers
24k
views
Can JetBrains Rider work properly with IISExpress?
The JetBrains Rider I'm using is the latest version, 2019.1.2 (free 30-day trial), from the official website. It's not a broken version.
I have a solution which contains an ASP.NET web API csproj. The ...
14
votes
2
answers
6k
views
C# Rider How to disable format/reformat in a block of code?
I've got some C# code that has specific format that I don't want re-formatted by Rider.
Is there some directive I can add to my code to tell Rider that this section shouldn't be reformatted?
Thanks.
14
votes
2
answers
38k
views
Restoring nuget packages of a solution in .net Rider IDE: Failed to download package `x` The HTTP request to GET `x` has timedout after 100000ms
I have ArchLinux distro, I'm testing .Net SDK on Linux for the first time. I installed a trial version of JetBrains Rider IDE. I created new ASP.Net Core project, but I get this error message in the ...
13
votes
5
answers
8k
views
Error being thrown when trying to debug from JetBrains Rider: error HE0004: Could not load the framework 'DVTITunesSoftwareServiceFoundation'
I am unable to debug a Xamarin.iOS application out of JetBrains Rider 2022.2.2. This is the error that gets thrown when trying to deploy to the simulator:
error HE0004: Could not load the framework '...
12
votes
2
answers
6k
views
Unity / RIDER: order of multiplication operations is inefficient?
The rider IDE is informing me that the following is inefficient
transform.Translate(moveDirection * speed * Time.smoothDeltaTime);
and wants to re-write it as
transform.Translate(...
12
votes
2
answers
13k
views
Share code style settings between Rider and ReSharper
Is there an easy way to export/share my Rider code style settings and use those in ReSharper (VS) and vice versa?
12
votes
1
answer
5k
views
Open the same solution using multiple instances of Rider in macOS
How do I open the same solution using 2 different instances of Rider in macOS ? I have a web application which I need to run and debug, and while it is running I need to run my API tests project ...