From aa3baa780dbaefde37942978c1b8343beb8187a5 Mon Sep 17 00:00:00 2001 From: Mattia Belletti Date: Mon, 17 Feb 2025 11:44:05 +0100 Subject: [PATCH] chore: add CLSCompliant attribute to avoid build compilation warnings. --- InkBlot/Assembly.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/InkBlot/Assembly.cs b/InkBlot/Assembly.cs index cf360e5..1cbc9a2 100644 --- a/InkBlot/Assembly.cs +++ b/InkBlot/Assembly.cs @@ -1,3 +1,4 @@ using System.Runtime.CompilerServices; -[assembly: InternalsVisibleTo("InkBlot.Tests")] \ No newline at end of file +[assembly: InternalsVisibleTo("InkBlot.Tests")] +[assembly: CLSCompliant(false)] \ No newline at end of file