diff --git a/test/vstest.ProgrammerTests/Fakes/FakeCommunicationEndpoint.cs b/test/vstest.ProgrammerTests/Fakes/FakeCommunicationEndpoint.cs index e92dbdb3a4..5ad2ec958c 100644 --- a/test/vstest.ProgrammerTests/Fakes/FakeCommunicationEndpoint.cs +++ b/test/vstest.ProgrammerTests/Fakes/FakeCommunicationEndpoint.cs @@ -5,9 +5,7 @@ using Microsoft.VisualStudio.TestPlatform.ObjectModel; using Microsoft.VisualStudio.TestPlatform.Utilities; -#pragma warning disable IDE1006 // Naming Styles namespace vstest.ProgrammerTests.Fakes; -#pragma warning restore IDE1006 // Naming Styles internal class FakeCommunicationEndpoint : ICommunicationEndPoint { diff --git a/test/vstest.ProgrammerTests/GlobalSuppressions.cs b/test/vstest.ProgrammerTests/GlobalSuppressions.cs new file mode 100644 index 0000000000..febbc6c16c --- /dev/null +++ b/test/vstest.ProgrammerTests/GlobalSuppressions.cs @@ -0,0 +1,6 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. See LICENSE file in the project root for full license information. + +using System.Diagnostics.CodeAnalysis; + +[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "", Scope = "namespace", Target = "~N:vstest.ProgrammerTests.Fakes")]