|
1 |
| - |
| 1 | + |
2 | 2 | // This file is used by Code Analysis to maintain SuppressMessage
|
3 | 3 | // attributes that are applied to this project.
|
4 | 4 | // Project-level suppressions either have no target or are given
|
5 | 5 | // a specific target and scoped to a namespace, type, member, etc.
|
6 | 6 |
|
7 | 7 | using System.Diagnostics.CodeAnalysis;
|
8 | 8 |
|
9 |
| -[assembly: SuppressMessage("Interoperability", "CA1401: P/Invokes should not be visible")] |
10 |
| -[assembly: SuppressMessage("Usage", "PC003: Native API not available in UWP")] |
11 |
| -[assembly: SuppressMessage("Globalization", "CA2101: Specify marshaling for P/Invoke string arguments")] |
12 |
| -[assembly: SuppressMessage("Naming", "CA1707: Identifiers should not contain underscores")] |
13 |
| -[assembly: SuppressMessage("Design", "CA1051: Do not declare visible instance fields")] |
14 |
| -[assembly: SuppressMessage("Performance", "CA1815: Override equals and operator equals on value types")] |
15 |
| -[assembly: SuppressMessage("Naming", "CA1714: Flags enums should have plural names")] |
16 |
| -[assembly: SuppressMessage("Documentation", "CA1200: Avoid using cref tags with a prefix")] |
| 9 | +[assembly: SuppressMessage("Design", |
| 10 | + "CA1051: Do not declare visible instance fields")] |
| 11 | +[assembly: SuppressMessage("Documentation", |
| 12 | + "CA1200: Avoid using cref tags with a prefix")] |
| 13 | +[assembly: SuppressMessage("Interoperability", |
| 14 | + "CA1401: P/Invokes should not be visible")] |
| 15 | +[assembly: SuppressMessage("Naming", |
| 16 | + "CA1707: Identifiers should not contain underscores")] |
| 17 | +[assembly: SuppressMessage("Naming", |
| 18 | + "CA1714: Flags enums should have plural names")] |
| 19 | +[assembly: SuppressMessage("Performance", |
| 20 | + "CA1815: Override equals and operator equals on value types")] |
| 21 | +[assembly: SuppressMessage("Globalization", |
| 22 | + "CA2101: Specify marshaling for P/Invoke string arguments")] |
| 23 | +[assembly: SuppressMessage("Documentation", |
| 24 | + "CS0419: Ambiguous reference in cref attribute")] |
| 25 | +[assembly: SuppressMessage("Usage", |
| 26 | + "PC003: Native API not available in UWP")] |
0 commit comments