Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent diagnostics on .NET SDK 8.0.100 #2049

Merged
merged 3 commits into from
Nov 22, 2023
Merged

Commits on Nov 15, 2023

  1. Intial fast route to 0 diagnostics

    * disabled several entirely
    * fixed some easy ones
    idg10 committed Nov 15, 2023
    Configuration menu
    Copy the full SHA
    8624e23 View commit details
    Browse the repository at this point in the history
  2. Address collection expression diagnostics

    In most cases, we now just use the new (C# 12.0) collection expression syntax. However, we've disabled IDE0305 because it makes suggestions that aren't an obvious improvement. It wants to rewrite use of ToArray() to be a collection expression. E.g. something.ToArray() would become [.. something]. Perhaps that will seem natural once we've all got used to spreads in collection expressions, but to me (idg10) today that looks odd.
    idg10 committed Nov 15, 2023
    Configuration menu
    Copy the full SHA
    da79093 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2023

  1. Add comment explainin why we've disable IDE0290

    Make UWP test runner use the same warning settings as everything else, except for CS0618, which a large number of tests appear to depend on.
    idg10 committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    2837ecd View commit details
    Browse the repository at this point in the history