Dave Cousineau
- Total activity 236
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 26
- Subscriptions 69
-
Created Incorrect shift warning
When compiling for 64-bit, Rider gives a warning when bit shifting on native ints as if we were compiling for 32-bit.nint value = 5; nint result = value >> 35; // incorrect warning in 64-bit mode s... -
Edited Rider 2025.2 Multi-Careting Issues
Occasionally there are mutli-careting glitches in Rider 2025.2, usually when deleting or auto-completing. They are inconsistent and hard to replicate, but I think I have one that is repeatable. Thi... -
Edited Bad Indenting
For the past few versions, I keep hoping it gets fixed in a patch but never does, the indenting is kind of terrible. It will consistently fail to indent properly and goes to zero indent.Pretty cons... -
Created Rider overwriting changes when switching branches
This was just annoying at first but I'm realizing it's actually VERY bad since Rider will erase uncommitted changes in some cases and you will lose code.I also thought it was git at first, but I'm ... -
Created Resolving rebase/merge conflicts in .sln files hangs Rider
this is tricky to reproduce. you have to setup a merge or rebase conflict in git on the .sln file. and then if you try to resolve the conflicts through rider, using the green >> button, the 3-pane ... -
Created Ignore folders from search?
Working with typescript is a bit frustrating since Rider will scan all kinds of output `.js` and `.d.ts` files but often will completely miss actual source `.ts` files even when they are immediatel... -
Created Rider accepts newlines as valid ValueTuple delimiters
Rider accepts the following as valid syntax, but it is not:var ( a b c ) = ("a", "b", "c");Thanks -
Edited Cannot Move 'Analyze' Tab When Profiling Memory?
Memory profile a program ("Run with Memory Profiling…") Project Builds Option for full or sampled allocations (choose full) Program runs and analyzer analyzes Drag “Analysis #1” tab to another mon... -
Created Wrongly thinks parens are unnecessary.
If I have a nullable object that has a non-nullable struct property, but I null coalesce into a nullable struct type, parens are (seemingly) necessary to get it to compile.readonly record struct My... -
Created Chop long line?
For long lines (in C#) I used to be able to use the quickfix “Chop Long Line”. I would have liked this option all of the time instead of just if a line was long; but now it seems that the option is...