Dave Cousineau

- Total activity 226
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 24
- Subscriptions 66
-
Edited 2022.1 Disable Unit Tests/Coverage Inlay Hint
How do I disable Unit Test/Coverage Inlay hints that say "1 Test OK", "2 Tests OK", etc.? I have all inlay hints disabled yet these still appear. Right clicking them gives no option (the other inla... -
Created "Color Usage" indicator for custom types?
There are indicators (inlay hints?) that show a color example when using instances of System.Drawing.Color. eg:This is very nice, but is it possible to get these for other color types? I have my ow... -
Edited TODO Explorer and NotImplementedException
The documentation of TODO Explorer in both R# and Rider explicitly says that TODO items can be uses of NotImplementedException in code, and the TODO Explorer contains definitions that try to do thi... -
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 Is it possible to choose a default platform?
Every time I add a new project to my solution, it defaults to Any CPU even though at this time I only build for x86. I add my own <Platforms>x86</Platforms> tag to the csproj, but there are always ... -
Edited 2022.1 Unit Test Coverage gets stuck for single file
As I write new files of tests, after a few, one new file will stop receiving coverage highlights (it claims the tests are uncovered even though they pass). If I close and reopen the file, it will s... -
Created Suggestion: Assume/Opt-Out Pure (or MustUseReturnValue)
AnsweredI find that a method having an optional return value is the exception, not the norm. It would be nice if we could assume that all methods `[MustUseReturnValue]` by default, and then apply an `[Opti... -
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 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