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
This change fixes up the ./update-apis.ps1 script to only make changes
if something has changed. As part of this, the build server can now run
the script to ensure all the APIs are in the type forwards or reference
assembly.
// Licensed to the .NET Foundation under one or more agreements.
2
+
// The .NET Foundation licenses this file to you under the MIT license.
3
+
4
+
#pragma warning disable CA1822 // Mark members as static
5
+
#pragma warning disable CA1010 // Generic interface should also be implemented
6
+
#pragma warning disable CA1055 // URI-like return values should not be strings
7
+
#pragma warning disable CA1710 // Identifiers should have correct suffix
8
+
#pragma warning disable CA1008 // Enums should have zero value
9
+
#pragma warning disable CA1027 // Mark enums with FlagsAttribute
10
+
#pragma warning disable CA1069 // Enums values should not be duplicated
11
+
#pragma warning disable CA1819 // Properties should not return arrays
12
+
#pragma warning disable CA1056 // URI-like properties should not be strings
13
+
#pragma warning disable CA1024 // Use properties where appropriate
14
+
#pragma warning disable CA1724 // Type names should not match namespaces
15
+
#pragma warning disable CA1716 // Using a reserved keyword as the name of a virtual/interface member makes it harder for consumers in other languages to override/implement the member.
16
+
#pragma warning disable CA1054 // URI parameters should not be strings
17
+
#pragma warning disable CS0809 // Obsolete member overrides non-obsolete member
0 commit comments