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
# CS4014: Because this call is not awaited, execution of the current method continues before the call is completed
47
44
dotnet_diagnostic.CS4014.severity = error
48
45
46
+
# CS2012: ValueTask instances returned from member invocations are intended to be directly awaited. Attempts to consume a ValueTask multiple times or to directly access one's result before it's known to be completed may result in an exception or corruption. Ignoring such a ValueTask is likely an indication of a functional bug and may degrade performance.
47
+
dotnet_diagnostic.CS2012.severity = error
48
+
49
+
# CS1998 : This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
# CA2016: Forward the 'cancellationToken' parameter methods that take one
119
125
dotnet_diagnostic.CA2016.severity = error
120
126
127
+
# CA1068: CancellationToken parameters must come last
128
+
dotnet_diagnostic.CA1068.severity = error
129
+
121
130
# CA2208: Method passes parameter as the paramName argument to a ArgumentNullException constructor. Replace this argument with one of the method's parameter names. Note that the provided parameter name should have the exact casing as declared on the method.
<ItemGroupCondition="$(TargetFramework.StartsWith('Xamarin.Mac')) != true AND $(TargetFramework.StartsWith('Xamarin.iOS')) != true AND $(TargetFramework.EndsWith('-ios')) != true AND $(TargetFramework.EndsWith('-maccatalyst')) != true">
0 commit comments