Questions tagged [rider]

Rider is a cross-platform (Windows, Linux & macOS) IDE created by JetBrains for the .NET/Mono family of languages such as C#. Use this tag if your questions are specific to using Rider or are specific to Rider's behavior. Rider troubleshooting and bugs are off-topic.

Rider provides 2,000+ live code inspections, 500+ refactorings, multiple code navigation helpers, a unit test runner, an integrated debugger, rich coding assistance, and dozens of other features that help you read, write, and navigate large .NET codebases. Most of these features are also found in ReSharper, a popular Visual Studio plugin by JetBrains.

Rider supports most of the languages used in .NET development, from C#, VB.NET, and F# to ASP.NET Razor syntax, JavaScript, TypeScript, XAML, HTML, CSS, SCSS, JSON, and SQL.

Useful links

1062 questions
0
votes
1 answer

How to copy paste error messages from JetBrains Rider?

I have the following Popup from JetBrains Rider: How can I focus an error message in JetBrains Rider so I can copy paste that message and Google why Rider thinks I should not start my source code with a comment. UPDATE 1: The file extension is…
Martin
  • 11,577
  • 16
  • 80
  • 110
0
votes
2 answers

In C#, what will happen for an removed object's Action?

I want to make a deep Copy for my Class TreeNode. Here is my code: public TreeNode(TreeNode node, GUIStyle inPointStyle, GUIStyle outPointStyle, Action OnClickInPoint, Action OnClickOutPoint) { this.rect =…
TIANLUN ZHU
  • 349
  • 1
  • 14
0
votes
1 answer

Why rider light color scheme has dark autocomplete?

I have switched dark scheme to the light, but autocomplite still dark rider dark: change color scheme Approve changing of entire scheme result autocompletion colors :( I want normal autocomplete, I have checked color settings but didn't find how…
Nikita
  • 1,019
  • 2
  • 15
  • 39
0
votes
1 answer

Missing "Ignore" option in VCS window

I'm going through Rider tutorials and VCS tutorial seems to claim that upon right-clicking on the unstaged file/directory there should be an option to add it to ignore list; however it's missing in my case (see screenshot). Screenshot from…
0
votes
1 answer

Cant find aspx.cs in jetbrains rider

I have installed Jetbrains Rider and created an ASP.NET Project, but I can't find the behind code of web page.aspx any help? Rider screenshot: Rider Visual Studio screenshot: Visual Studio
Seemon
  • 11
  • 1
  • 3
0
votes
1 answer

Rider not showing "Check expression for null" in contextual popup

I'm starting with rider and just started doing some of the built-in introductory tutorials. Just at the beginning (I think it is third step) of the essentials tutorial I am instructed to do this (Can be read on the right) but no option is shown in…
Notbad
  • 5,936
  • 12
  • 54
  • 100
0
votes
1 answer

Is there a way to access the current solution source from C# Interactive in Rider?

I'm looking for a way to programatically modify the source in a solution from within Rider (or Resharper). For example, I have an array of tuples with 1000 find/replace (F/R) strings to perform a major refactor, and I might want to find a usage of F…
JSobell
  • 1,825
  • 1
  • 14
  • 10
0
votes
1 answer

How to fix "Debug symbols for assembly nunit.framework could not be loaded correctly. Mono runtime doesn't support full pdb?"

I installed Unity game engine and Rider IDE, after setting up everything. Then I created a new unity project and then that warning started popping. Everything is fresh installed and created. Every time I click on debug that warning shows up. I tried…
0
votes
1 answer

How do I set build action for a new file?

I added a new sql file to a folder. Now I want to change the properties of the file to be an embedded resource. When I right-click the file and go to Properties, it only shows the "General" section which is the name and location of the file. If I…
Joe Phillips
  • 49,743
  • 32
  • 103
  • 159
0
votes
1 answer

The project not find the Swagger file

I try to run some C# code in Rider with Swagger file and it does not work. I installed Swagger, Swagger plugin. The swagger.yaml file has works and the API can be viewed in the browser. That's the lines at the beginning of the code: using…
dr.list
  • 3
  • 4
0
votes
1 answer

"This repository indicated that all its packages are repository signed; however, this package is unsigned." on Jetbrains RIder

Every time i try to update a nuget from "package" tab on rider for mac, i receive the following message: "[Notification][Install] Install failed (project: xxx, package: Xamarin.Forms v4.1.0.581479) Package restore failed. Rolling back package…
Gaburiere
  • 71
  • 9
0
votes
1 answer

Rider 2019.1 - Launching Code Inspection from Command Line

I am trying to run Rider IDE's code inspection flow using command line tool by referencing the following link : https://www.jetbrains.com/help/idea/command-line-code-inspector.html I can not find any correct "inspection-path" as stated in the…
Fuat Coşkun
  • 1,045
  • 8
  • 18
0
votes
0 answers

File Watcher generate .css file but don't refresh browser and don't apply CSS code

All my colleagues work on Visual Studio (me too before one week), but I switched to Rider. After setup my project I setup file watcher to compile SCSS to CSS. But I have weird issue when I change something in my SCSS file everything compiles to CSS…
Valery Mihaylov
  • 33
  • 1
  • 1
  • 4
0
votes
1 answer

Is there a Run/Debug Configuration template for ASP Classic for Jetbrains Rider?

I have an ASP Classic / VBScript project that I want to run with IIS Express when pressing the Run or Debug buttons in Rider, as one can when using Visual Studio. Is this possible?
Ian Warburton
  • 15,170
  • 23
  • 107
  • 189
0
votes
1 answer

Run specific suits xUnit

Due to lack of documentation for xUnit I came here. I'm trying to find a way of separating my tests into suits. So far I have some tests that interact with database, I'd like to test them separately from my unit tests. Moreover, I'd like to mark the…
Vitalii Isaenko
  • 941
  • 1
  • 14
  • 37