Skip to content

Commit 8dd52af

Browse files
committed
Fix code analysis warnings
1 parent 9df4e94 commit 8dd52af

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

Atc.Test.sln

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,25 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Atc.Test", "src\Atc.Test\At
77
EndProject
88
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Atc.Test.Tests", "test\Atc.Test.Tests\Atc.Test.Tests.csproj", "{FE44F21D-22E5-47ED-A551-74AF79E23C89}"
99
EndProject
10+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".config", ".config", "{23CF9054-75B8-4E9E-A252-52C5C1455ECA}"
11+
ProjectSection(SolutionItems) = preProject
12+
.editorconfig = .editorconfig
13+
Directory.Build.props = Directory.Build.props
14+
README.md = README.md
15+
EndProjectSection
16+
EndProject
17+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{2E82F528-471D-4451-ADD9-C0AF97692C8D}"
18+
ProjectSection(SolutionItems) = preProject
19+
src\.editorconfig = src\.editorconfig
20+
src\Directory.Build.props = src\Directory.Build.props
21+
EndProjectSection
22+
EndProject
23+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{4B46C47D-DE74-4FA4-9A27-4CBCB354AE05}"
24+
ProjectSection(SolutionItems) = preProject
25+
test\.editorconfig = test\.editorconfig
26+
test\Directory.Build.props = test\Directory.Build.props
27+
EndProjectSection
28+
EndProject
1029
Global
1130
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1231
Debug|Any CPU = Debug|Any CPU
@@ -45,6 +64,10 @@ Global
4564
GlobalSection(SolutionProperties) = preSolution
4665
HideSolutionNode = FALSE
4766
EndGlobalSection
67+
GlobalSection(NestedProjects) = preSolution
68+
{7E15F9B0-040B-454B-BD29-E0A0CBC3473B} = {2E82F528-471D-4451-ADD9-C0AF97692C8D}
69+
{FE44F21D-22E5-47ED-A551-74AF79E23C89} = {4B46C47D-DE74-4FA4-9A27-4CBCB354AE05}
70+
EndGlobalSection
4871
GlobalSection(ExtensibilityGlobals) = postSolution
4972
SolutionGuid = {5E657CBB-3A3C-4C41-B832-7ACE196175AD}
5073
EndGlobalSection

test/.editorconfig

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,5 @@ dotnet_diagnostic.CA1812.severity = none # Test classes used as gener
6262
dotnet_diagnostic.SA1202.severity = none # Private helper methods makes sense to keep at top of test classes, as tests are added to bottom.
6363
dotnet_diagnostic.CA2201.severity = none # Instantiating Exceptions as test data should be allowed.
6464
dotnet_diagnostic.CA1711.severity = none # Identifiers should not have incorrect suffix
65-
dotnet_diagnostic.S2344.severity = none # Enumeration type names should not have "Flags" or "Enum" suffixes
65+
dotnet_diagnostic.S2344.severity = none # Enumeration type names should not have "Flags" or "Enum" suffixes
66+
dotnet_diagnostic.CA1515.severity = none # CA1515: Consider making public types internal

0 commit comments

Comments
 (0)