Skip to content

v4.11.0

Compare
Choose a tag to compare
@josefpihrt josefpihrt released this 19 Feb 15:09
· 24 commits to main since this release
c3a919d

Added

  • Add analyzer "Use raw string literal" RCS1266 (PR)
  • Add analyzer "Convert 'string.Concat' to interpolated string" RCS1267 (PR)
  • Simplify LINQ query RCS1077 (PR)
    • items.Select(selector).Average() => items.Average(selector)
    • items.Select(selector).Sum() => items.Sum(selector)

Fixed