From a67fcaca547abacadcb5e97fabef6e2cfcabbab7 Mon Sep 17 00:00:00 2001 From: Lakshmipriya Gottipati Date: Tue, 12 May 2026 15:52:26 +0530 Subject: [PATCH] Create .gdnsuppress for CodeSign suppressions Add suppressions for CodeSign tool warnings related to third-party dependencies. --- .gdn/.gdnsuppress | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gdn/.gdnsuppress diff --git a/.gdn/.gdnsuppress b/.gdn/.gdnsuppress new file mode 100644 index 0000000..fd08bb1 --- /dev/null +++ b/.gdn/.gdnsuppress @@ -0,0 +1,23 @@ +{ + "version": "1.0", + "suppressions": [ + { + "tool": "CodeSign", + "rule": "CodeSign.NoMatchingPolicy", + "file": "*Newtonsoft.Json.dll*", + "justification": "Third-party dependency signed with non-Microsoft certificate" + }, + { + "tool": "CodeSign", + "rule": "CodeSign.MissingSigningCert", + "file": "*Newtonsoft.Json.Schema.dll*", + "justification": "Third-party dependency not signed" + }, + { + "tool": "CodeSign", + "rule": "CodeSign.MissingSigningCert", + "file": "*.symbols.nupkg*", + "justification": "Debug symbols packages are not required to be signed" + } + ] +}