Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit e5260f5

Browse files
committed
Fix warnings in unit tests flagged by MSBuild Log
Suppressed: CA1707:Identifiers should not contain underscores CA1034:Nested types should not be visible
1 parent 90165b5 commit e5260f5

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+

2+
// This file is used by Code Analysis to maintain SuppressMessage
3+
// attributes that are applied to this project.
4+
// Project-level suppressions either have no target or are given
5+
// a specific target and scoped to a namespace, type, member, etc.
6+
7+
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores", Justification = "Unit test names can contain a _")]
8+
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Design", "CA1034:Nested types should not be visible", Justification = "Nested unit test classes should be visible", Scope = "type")]
9+

0 commit comments

Comments
 (0)