1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-24 05:34:06 +02:00

Mark assembly as CLS non-compliant

This commit is contained in:
chylex 2017-03-26 21:31:19 +02:00
parent ed9267b6ba
commit c8d52539ca
2 changed files with 4 additions and 2 deletions

View File

@ -15,7 +15,6 @@
using TweetDck.Core.Other; using TweetDck.Core.Other;
using TweetDck.Updates; using TweetDck.Updates;
[assembly: CLSCompliant(true)]
namespace TweetDck{ namespace TweetDck{
static class Program{ static class Program{
public const string BrandName = "TweetDuck"; public const string BrandName = "TweetDuck";

View File

@ -1,4 +1,5 @@
using System.Reflection; using System;
using System.Reflection;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Resources; using System.Resources;
using TweetDck; using TweetDck;
@ -38,6 +39,8 @@
[assembly: NeutralResourcesLanguageAttribute("en")] [assembly: NeutralResourcesLanguageAttribute("en")]
[assembly: CLSCompliant(false)]
#if DEBUG #if DEBUG
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("UnitTests")] [assembly: System.Runtime.CompilerServices.InternalsVisibleTo("UnitTests")]
#endif #endif