Dave Cousineau

Avatar
  • Total activity 226
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 24
  • Subscriptions 66
  • Edited

    2021.3 gives incorrect "suppression operator not allowed" errors

    The following should be valid: class Something<T> where T : notnull {    void DoSomething(T t) {       if (t is null!)          return;    } }   Rider is giving "The suppression operator is not all...
    • 2 followers
    • 1 comment
    • 0 votes
  • Created

    csproj tags

    There are a couple of tags in csproj that I think you don't handle properly. I'm not sure if this is documented anywhere (ie: by Microsoft) but the three tags TargetFramework, Platform, and Configu...
    • 2 followers
    • 10 comments
    • 0 votes
  • Edited

    How do I export/import Live Templates? (C#)

    All my live templates disappeared from my second workstation. I've exported and imported all settings from my first workstation to my second, but no live templates appeared. When I read the documen...
    • 4 followers
    • 4 comments
    • 0 votes
  • Edited

    dotCover never works in Rider?

    It was tricky getting unit tests to work in general, but now that they work, coverage doesn't work at all. Even the tests themselves are uncovered despite passing. This is .NET Core 3.1 (x86), and ...
    • 5 followers
    • 16 comments
    • 0 votes
  • 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...
    • 2 followers
    • 2 comments
    • 2 votes
  • Created

    Suggestion: Assume/Opt-Out Pure (or MustUseReturnValue)

    Answered
    I 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...
    • 2 followers
    • 2 comments
    • 1 vote
  • Created

    How do I disable (or fix) VCS?

    Answered
    Rider is great, but it constantly tries to apply my moving files around and renaming folders etc. to my Mercurial repo, but for some reason has constant errors when doing so, and I end up with all ...
    • 2 followers
    • 3 comments
    • 0 votes