Dave Cousineau
- Total activity 227
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 24
- Subscriptions 67
-
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... -
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 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...