Dave Cousineau

- Total activity 226
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 24
- Subscriptions 66
-
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... -
Edited How to select other overloads?
This has been bugging me for a while. How do we browse through the list of overloads? When looking at parameter info, it shows the list of overloads, and the most likely candidate is selected, but ... -
Created Sort unit tests by code?
Unit tests seem sorted alphabetically by default. Is it possible instead to have them in code order? There doesn't seem to be a sorting option at all?Thanks -
Edited Delete stops working with multi-caret
It's difficult to determine the precise circumstances that cause this, but the example I have is as follows.Have auto properties that are assigned values:public int X { get; } = 5; public int Y { g... -
Created Duplicate 'new' with multiple carets and "new Thing" intellisense option
Steps:Declare a class (problem seems not to occur with `object`):class Thing { }Declare two auto properties in some other type:public Thing A { get; }| public Thing B { get; }|Use multi-caret as ab... -
Edited Move block of text slowly loses selection
I guess I need to report this for it to get fixed.At first I thought this happened with any lines, but actually it seems to specifically affect using lines.Pretty easy to replicate: Select at least...