You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With C# 9.0, SA1000 complains about "target type new expressions":
private readonly object syncObject = new();
Expected:
No message:
Actual:
Severity Code Description Project File Line Suppression State
Error SA1000 The keyword 'new' should be followed by a space. Microsoft.VisualStudio.ProjectSystem C:\CPS\src\Microsoft.VisualStudio.ProjectSystem\Build\Logging\ProjectBuildTargetErrorList.cs 21 Active
DamianSuess, viceice, juharris, hammypants, daniel-liuzzi and 3 more