From 168c6d917788df787a650419827ee56563a502e5 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Wed, 30 Nov 2022 20:18:50 +0000 Subject: [PATCH] Add CLSCompliant attribute to VpSharp.Commands assembly --- VpSharp.Commands/Assembly.cs | 1 + VpSharp.Commands/Attributes/AliasesAttribute.cs | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 VpSharp.Commands/Assembly.cs diff --git a/VpSharp.Commands/Assembly.cs b/VpSharp.Commands/Assembly.cs new file mode 100644 index 0000000..f547610 --- /dev/null +++ b/VpSharp.Commands/Assembly.cs @@ -0,0 +1 @@ +[assembly: CLSCompliant(true)] diff --git a/VpSharp.Commands/Attributes/AliasesAttribute.cs b/VpSharp.Commands/Attributes/AliasesAttribute.cs index 74fb4ec..dfbd700 100644 --- a/VpSharp.Commands/Attributes/AliasesAttribute.cs +++ b/VpSharp.Commands/Attributes/AliasesAttribute.cs @@ -1,4 +1,4 @@ -using System.Collections.ObjectModel; +using System.Collections.ObjectModel; namespace VpSharp.Commands.Attributes; @@ -6,6 +6,7 @@ namespace VpSharp.Commands.Attributes; /// Defines the aliases of a command. /// [AttributeUsage(AttributeTargets.Method)] +[CLSCompliant(false)] public sealed class AliasesAttribute : Attribute { ///