Dave Cousineau

- Total activity 226
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 24
- Subscriptions 66
-
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... -
Edited General Issues When Dealing With File Templates
In 2024.2 not sure which other versions, it seems you cannot properly name File Templates. Add a new (C#) file template Give it a description (eg: asdf) Click on any another file template Click bac... -
Created Unknown database function 'date'
In SQL dialect for postgresql, the IDE does not recognize the date function(s). (For me this is postgresql 9.3).This should be valid SQL for postgres:SELECT date('2024/1/1');and indeed, it does exe... -
Created Build Step of Unit Test Run No Longer Shows
When you run some unit tests, first a build is performed. This build is no longer shown in the UI. The UI just does nothing while the build happens. Nothing is shown on the build window. Additional... -
Edited Wrong tooltips when window does not have focus
This applies specifically to using multiple monitors/windows; when Rider itself does not have focus at all, there are no tooltips. (That could be an issue too but not exactly what I'm reporting). (... -
Edited Problems by type?
How to view code issues by type/category? This used to be possible, but does not seem to be possible anymore with your new “problems” window.100 files with 1 warning each is not nice to browse thro... -
Created Jagged array creation with wrong size specified does not show as error.
This code should show as an error but does not:var array1 = new object?[][3];This code is ok:var array2 = new object?[3][];This code should show an error and does:var array3 = new object?[][]; -
Edited Previous location stack often misses actions that should add to it.
I was going to say that “go to next error” does not add the location to the previous location stack, but testing this out, it seems a bit more broken than that.I'm not 100% sure which actions are s...