Skip to content

Commit 85ea5e1

Browse files
committed
Mark assemblies with CLSCompliant (cont.)
As these assemblies rely on the ASP.NET Core SDK, they cannot be marked as CLSCompliant. This should be communicated to callers. This resolves CA1014. This picks up a missing item from the previous commit (94119eb).
1 parent 3f10197 commit 85ea5e1

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*==============================================================================================================================
2+
| Author Ignia, LLC
3+
| Client Ignia, LLC
4+
| Project Topics Library
5+
\=============================================================================================================================*/
6+
using System;
7+
using System.Runtime.InteropServices;
8+
9+
/*==============================================================================================================================
10+
| DEFINE ASSEMBLY ATTRIBUTES
11+
>===============================================================================================================================
12+
| Declare and define attributes used in the compiling of the finished assembly.
13+
\-----------------------------------------------------------------------------------------------------------------------------*/
14+
[assembly: ComVisible(false)]
15+
[assembly: CLSCompliant(false)]

0 commit comments

Comments
 (0)