From 1da1327ac024b533f491300e6e06c5b9d4552318 Mon Sep 17 00:00:00 2001 From: Byte-Nova <159603018+Byte-Nova@users.noreply.github.com> Date: Tue, 17 Sep 2024 13:07:23 +0200 Subject: [PATCH] Added global suppression for project --- Source/Client/GlobalSuppressions.cs | 8 ++++++++ Source/Server/GlobalSuppressions.cs | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 Source/Client/GlobalSuppressions.cs create mode 100644 Source/Server/GlobalSuppressions.cs diff --git a/Source/Client/GlobalSuppressions.cs b/Source/Client/GlobalSuppressions.cs new file mode 100644 index 00000000..0a97511e --- /dev/null +++ b/Source/Client/GlobalSuppressions.cs @@ -0,0 +1,8 @@ +// This file is used by Code Analysis to maintain SuppressMessage +// attributes that are applied to this project. +// Project-level suppressions either have no target or are given +// a specific target and scoped to a namespace, type, member, etc. + +using System.Diagnostics.CodeAnalysis; + +[assembly: SuppressMessage("Style", "IDE0130:Namespace does not match folder structure", Justification = "", Scope = "namespace", Target = "~N:GameClient")] \ No newline at end of file diff --git a/Source/Server/GlobalSuppressions.cs b/Source/Server/GlobalSuppressions.cs new file mode 100644 index 00000000..08ad4e4c --- /dev/null +++ b/Source/Server/GlobalSuppressions.cs @@ -0,0 +1,8 @@ +// This file is used by Code Analysis to maintain SuppressMessage +// attributes that are applied to this project. +// Project-level suppressions either have no target or are given +// a specific target and scoped to a namespace, type, member, etc. + +using System.Diagnostics.CodeAnalysis; + +[assembly: SuppressMessage("Style", "IDE0130:Namespace does not match folder structure", Justification = "", Scope = "namespace", Target = "~N:GameServer")]