From 3e5f54857f4e6bff552bd9c4ba82849d57671acf Mon Sep 17 00:00:00 2001 From: Anton Kasyanov Date: Sat, 14 May 2016 00:52:01 +0300 Subject: [PATCH] Mark assemblies as CLSCompliant --- Eve-O-Mock/Properties/AssemblyInfo.cs | 5 ++++- Eve-O-Preview/Properties/AssemblyInfo.cs | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Eve-O-Mock/Properties/AssemblyInfo.cs b/Eve-O-Mock/Properties/AssemblyInfo.cs index 6be2b76..8f04a3c 100644 --- a/Eve-O-Mock/Properties/AssemblyInfo.cs +++ b/Eve-O-Mock/Properties/AssemblyInfo.cs @@ -1,4 +1,5 @@ -using System.Reflection; +using System; +using System.Reflection; using System.Runtime.InteropServices; using System.Windows; @@ -23,3 +24,5 @@ using System.Windows; [assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")] + +[assembly: CLSCompliant(true)] \ No newline at end of file diff --git a/Eve-O-Preview/Properties/AssemblyInfo.cs b/Eve-O-Preview/Properties/AssemblyInfo.cs index 5d9a712..75c665f 100644 --- a/Eve-O-Preview/Properties/AssemblyInfo.cs +++ b/Eve-O-Preview/Properties/AssemblyInfo.cs @@ -1,4 +1,5 @@ -using System.Reflection; +using System; +using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("EVE-O Preview")] @@ -16,3 +17,5 @@ using System.Runtime.InteropServices; // Provide your own key name to build the app locally [assembly: AssemblyKeyName("Phrynohyas")] + +[assembly: CLSCompliant(true)]