1,315 questions
3
votes
1
answer
3k
views
Unable to Start Azure Function Project in Rider (Mint/Ubuntu)
I've got a large-ish solution consisting of all .net8 code running in Rider on an Ubuntu / Mint Linux environment.
The API runs fine but the Function will not start. When I run them up I get the ...
4
votes
0
answers
122
views
Is there a shortcut/hotkey for the Run Http Request in Rider?
I want to run the request where my cursor at with keyboard but cannot find a shortcut for it (configurable ideally).
There is a Run context configuration option that one can use, but it does not quite ...
-1
votes
1
answer
196
views
Collection expression 'List<int> = [1,2]' make red line in Jetbarin Rider, but no error
Code:
List<int> list = [1,2];
This code can be builded without any error.
But in Rider, it makes red line.
When i get on curser in red line, it states like these.
How do i remove this?
0
votes
1
answer
863
views
Rider warning on Unity project due to incorrect namespace
Rider is showing a warning on all my C# scripts because they do not have "GameName.Scripts" in the beggining of their namespace.
Rider offers a checkbox on a folder's property to prevent ...
0
votes
2
answers
563
views
JetBrains Rider IDE for Azure Webjob Development/Publishing
Does Rider support the development/publishing of WebJobs ??? I can't find any supporting material. Documentation pointers would be appreciated.
2
votes
0
answers
3k
views
Install local NuGet package in Rider
Hi have a locally generated NuGet package and I want to import it in a C# project using the Rider IDE.
So far I found a topic explaining how to do that with visual studio, I guess I could do it with ...
0
votes
0
answers
303
views
Error : /usr/bin/codesign exited with code 1:
I am using Jetbrains Rider. I have spent the last 24 hours or so trying to run and debug a maui application on an iPhone. Everything works on my simulator and my mac. I have a relatively new mac ...
2
votes
0
answers
352
views
Why am I intermittently getting "syntax error near unexpected token `('" from my function definition, depending upon the terminal I use?
I suspect that I have an issue similar to Alias causes error: syntax error near unexpected token `(', (exact same error message) yet it differs in that:
I am trying to define a function, not an ...
0
votes
1
answer
559
views
JetBrains Rider: Show the full method or function signatures inside "Find in Files" dialog?
When using the "Find in Files" dialog in JetBrains Rider (Ctl Shift F), is there a way to show the full method or function signatures? The method/function signatures can be shown in a ...
0
votes
1
answer
258
views
Is that possible to annotate a method NotNull in Rider with a non-invasive way
When I using pessimistic value analysis mode, I got hundreds of null related warning. I want to remove them in a non-invasive way.
For example, there is a method in my source code, and I want to ...
0
votes
0
answers
698
views
Rider editor zoomed in
After zooming in on macOS for Rider to make the font bigger, I can't zoom out and reset it to the 13px default size. Normally it could, but now not anymore. What can I do?
-1
votes
1
answer
1k
views
Git changes showing all generated files that do not need to be committed
I have a C# project that I pulled onto a new machine, even with no changes made by me, Rider is showing 856 files changed. They all seem to be auto generated to run on my machine, how can I disable ...
1
vote
0
answers
80
views
projects merge automatically when adding a new project to the solution in jetbrains rider
I am working on a project in rider IDE I currently have one web API project in it when I try to add a new project to the solution rider adds the new project to the already existing web API project ...
2
votes
1
answer
400
views
Is there a way in JetBrains IDE's to set a keyboard shortcut to move the caret/cursor to the center?
I am looking for a command in JetBrains IDE's (specifically WebStorm and Rider) to set a keyboard shortcut that will center the caret in the center of the editor page.
Is this possible with a shortcut ...
0
votes
0
answers
73
views
Rider Unit Tests: Enqueue tests
In the Rider Test Runner UI, is there any way to say "when you've finished running the current set of tests that you're running ... then please run these ones"?
Nothing to do with the code ...
0
votes
1
answer
143
views
Project builds in command line and visual studio but not in rider on mac m1pro MSB3971
My project builds fine in visual studio for mac but refuses to build in rider. I get the following error in rider:
0>Microsoft.Common.CurrentVersion.targets(1232,5): Error MSB3971 : The reference ...
2
votes
0
answers
105
views
Disable Go To Declaration just for .SQL files in JetBrains IDEs
Is there a way in JetBrains products to disable Go to Declaration (Ctrl/Cmd + Click, Ctrl/Cmd + B) specifically and only for .sql files? I am running the latest JetBrains Rider, if that matters.
I am ...
0
votes
1
answer
2k
views
How to Programmatically Attach JetBrains Rider's Debugger to a Process in a Plugin
I'm currently developing a plugin for JetBrains Rider (version 2023.2.3). A key feature of this plugin involves creating and running a .NET executable file using System.Diagnostics.Process, which ...
1
vote
2
answers
1k
views
Debugging Angular apps in Rider
I googled around and found way to debug Angular apps in Rider but it doesn't feel right because of the steps it requires to do such a simple thing, so I'm here to ask if the approach is correct and if ...
0
votes
1
answer
64
views
C# does the compiler leave re-references in the final binary?
I have this code:
private static void Tokenize(RichTextLabel Log,string commandString){
Log.Text += "\n&";
int[] tokens = new int[5];
int current = 0;
...
0
votes
0
answers
988
views
Rider does not detect UnitTest
I have recently started to use the Rider IDE from JetBrains for my projects. I faced an issue when one day after opening the solution, the IDE suddenly could not recognize any of test cases in the ...
1
vote
1
answer
1k
views
Jetbrains Rider can you change "Comment with line comment" to use 4 slashes instead of 2?
We are using Jetbrains Rider to do our .Net C# projects.
If I have a code block that I'm currently working on and want to try something else, I usually just comment out the lines, using the "...
2
votes
1
answer
798
views
Is there an alternative to dotnet blazor asp.net hosted in Rider
In visual studio I can select a webassembly app with the option asp.net core hosted.
This creates a wasm client app and the corresponding server part and also a shared space.
Currently I am evaluating ...
0
votes
0
answers
514
views
.NET 8 Visual Studio/Rider Issue with .NET MAUI Publish Windows Build - RID Mismatches
Issue with .NET MAUI Publish Windows Build - RID Mismatches
I am working on a .NET MAUI application and encountering issues during the publish build process. I am trying to side-load the application ...
1
vote
0
answers
74
views
IDE not breaking on exception thrown from websocket controller or middleware
For some reason if exception is thrown specifically from ws controller or middleware - IDE will not break. The socket is closing and thats it. It will on usual http method. I am using Rider, but ...