1,315 questions
1
vote
1
answer
600
views
Cannot run .NET 8 lambda in Rider
We're setting up a new lambdas solution using the Annotations framework and targeting .NET 8.
When setting up our Run/Debug Configurations in Rider, we're getting an error message at the bottom of the ...
0
votes
1
answer
66
views
Jetbrain Rider IDE File Open Actions
In Jetbrains Rider IDE, when I do left click, I get a message "File Open Actions. Nothing here". Please find attached screenshot.
I have tried mutliple keymap settings but still unable to ...
0
votes
1
answer
167
views
SDL2-CS on Mac M2 in Rider MAUI not found when using 'using' in C#
I've had issues for a while now with reading a joystick/controller using SDL2 in C#.
I am using SDL2 for cross platform dev using MAUI for Mac and Windows
I tried to install SDL2 using brew:
brew ...
0
votes
1
answer
115
views
DinkToPDF issues on Mac M1 - conversion process hangs
I'm trying to integrate DinkToPDF to convert my HTML reports to PDF in my application. I've made console PoC based on developer's sample and it works fine - I can see that the wkhtmltopdf process ...
0
votes
0
answers
78
views
C# project created in CLI with custom template returns empty folder
I've set up a template for a microservice that we will have to create plenty of in an upcoming project. After following all the steps, I was able to create a nupkg package. I've installed the template ...
-1
votes
1
answer
66
views
Rider not showing project errors for React Native app
Rider would not show any project error as WebStorm would for the whole project so after I make a mistake in a file and open another one, the error would not be shown.
I would like to know if it is ...
0
votes
2
answers
74
views
How to avoid build errors on "suggestions"?
I have a .NET 8 project I'm trying to build.
I get so many errors.
For example,
Now, in the editor, this "error" is set to "suggestion."
Here's my Code Style settings.
And ...
1
vote
1
answer
134
views
How to go to next compilation error using IdeaVim?
I would like to create a shortcut to go to next compilation error on Rider using IdeaVim. When I execute GoToNextError the cursor goes to the unused using (line 3) intstead of the compilation error (...
0
votes
1
answer
28
views
Rider mask implementation of a class or loop
Sometimes I can do it:
But sometimes the arrow isn't there:
This is very handy when files get a tad too large and I'm used to it in all other JetBrains product, any idea why it sometimes disappear?
...
0
votes
3
answers
47
views
Rider is picking default C# Matrix4x4 over UnityEngine.Matrix4x4. How to use only Unity engine matrixes?
Using Rider, I'm trying to do matrix things with unity, however for some reason suddenly Rider will only let me type the System.Numerics.Matrix4x4 instead of the Unity one.
Can I force it to use the ...
0
votes
1
answer
159
views
How to Share ReSharper Configuration Across Multiple Git Repositories
I'm working on several projects across different Git repositories, and I want to maintain a consistent ReSharper configuration across all of them. To achieve this, I'm considering storing the ...
0
votes
1
answer
893
views
How do I check which Windows C++ SDK version(s) I have installed, needed for Rider IDE
When I try to create a new C++ project with Rider I get this window:
Problem is, I don't know what I should write in CppWindowsSdkVersion field. I just updated to latest tools with Visual Studio ...
0
votes
1
answer
232
views
UE5 Editor doesn’t automatically open Rider EAP IDE
I tried both "Rider" and "Rider Uproject" options
When I double click on C++ class or trying Tools -> Open Rider in UE5 Editor I just see this notification in the left bottom ...
4
votes
1
answer
1k
views
Rider on Windows Debugger - CLR load callback is already in error state E_FAIL - 0x80004005
I’m suddenly unable to debug one project (AvaloniaUI,C#,.NET 8.0.302) in Rider (2024.1.3 / Build #RD-241.17011.166, built on June 7, 2024) on Windows 11 and I’m struggling to figure out the issue.
If ...
0
votes
0
answers
61
views
Refactor multiple public classes in a folder/namespace to internal classes
Imagine 10 public classes in a folder/namespace. I want to make all of them internal. Any way to do this using Rider without modifying each file manually?
1
vote
0
answers
74
views
dotnet missing from runtime dropdown in aws toolkit
I created a project in rider using the LambdaEmptyFunction template. When I try to deploy to AWS using the AWS toolkit I only have node in the runtime dropdown and no option to select dotnet.
0
votes
1
answer
230
views
.NET unable to make outbound connection (timeout)
On Linux, I've been having a really weird issue lately. This .NET code fails with a timeout. Using .NET 8.0.6
using var client = new HttpClient();
client.Timeout = TimeSpan.FromSeconds(5);
var request ...
1
vote
1
answer
638
views
JetBrains Rider could not copy Azure.Function.Worker
When using JetBrains Rider to debug an Azure Function every other re-build/build I get the following error message:
Microsoft.Azure.Functions.Worker.Sdk.targets(169,9): Warning MSB3026 : Could not ...
1
vote
0
answers
429
views
JetBrains Rider, how to prevent auto indent when I linebreak before a parenthesis
I've been through the Settings>Editor>Code Style>C# options but I can't see anything that prevents the IDE to add an indent in this situation:
Console.WriteLine(
myClass.myMethod(
...
0
votes
1
answer
112
views
Rider showing Count and Length property for MatchCollection
Consider this code:
var matches = new Regex("pattern").Matches("something");
matches. // trigger auto completion
In this case, auto completion shows me a Count and a Length ...
0
votes
2
answers
625
views
Use EnvironmentVariables in launchsettings.json in Rider Docker configuration
I'm working on a team where some people use VisualStudio, and others use Rider. We've recently dockerized our application, and we're able to run the app just fine in VisualStudio with the following ...
2
votes
2
answers
257
views
Console application requiring input multiple times
I'm attempting to get a more immediate response to the start of my program, this is rough and not a finished product by any means.
When I attempt to enter "Y" or "N" as per the ...
1
vote
0
answers
237
views
JetBrains Rider removing space between delegate keyword and parenthesis
On my team, some of us use Rider, others use Visual Studio 2022. When they run code cleanup, VS 2022 adds a space between delegate and () as seen here:
var cat = this.ExecuteAFunction("Function ...
1
vote
2
answers
278
views
Cannot resolve Unity's Newtonsoft.Json UPM package in Rider
I've just started making a Unity game after many years.
I'm trying to use Newtonsoft.Json for deserializing a geojson file with GeoJSON.Net, so I downloaded Unity's package (com.unity.nuget.newtonsoft-...
0
votes
1
answer
576
views
Rider auto collapse doc comments by default when open file
I'm working on a project in Rider and whenever I open any file, it contains document comments. By default, these comments are expanded, but I prefer to have them collapsed automatically when I open a ...