From 0715e13d859cd5a718c8331f450cb6c898c38de2 Mon Sep 17 00:00:00 2001 From: WonYoung Choi Date: Wed, 20 Apr 2016 19:55:23 +0900 Subject: [PATCH] Fix warnings of CodeAnalysis Change-Id: I12d613ff0b5504ec3bcea7d34d90d6a3d0a98f3c --- Tizen.Internals/Tizen.Internals.csproj | 1 + src/Tizen/Properties/AssemblyInfo.cs | 2 ++ src/Tizen/Tizen.csproj | 1 + src/Tizen/Tizen/Log.cs | 2 +- 4 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Tizen.Internals/Tizen.Internals.csproj b/Tizen.Internals/Tizen.Internals.csproj index f3d28cc..29d9996 100755 --- a/Tizen.Internals/Tizen.Internals.csproj +++ b/Tizen.Internals/Tizen.Internals.csproj @@ -22,6 +22,7 @@ prompt 4 bin\Debug\Tizen.Internals.XML + ExtendedDesignGuidelineRules.ruleset pdbonly diff --git a/src/Tizen/Properties/AssemblyInfo.cs b/src/Tizen/Properties/AssemblyInfo.cs index 44daf40..e73f4d8 100755 --- a/src/Tizen/Properties/AssemblyInfo.cs +++ b/src/Tizen/Properties/AssemblyInfo.cs @@ -1,3 +1,4 @@ +using System; using System.Reflection; using System.Runtime.InteropServices; @@ -11,6 +12,7 @@ using System.Runtime.InteropServices; [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] +[assembly: CLSCompliant(true)] [assembly: Guid("8aa94469-cdb5-4d8c-81d0-df4590eea612")] diff --git a/src/Tizen/Tizen.csproj b/src/Tizen/Tizen.csproj index e9c2d83..95afa93 100755 --- a/src/Tizen/Tizen.csproj +++ b/src/Tizen/Tizen.csproj @@ -22,6 +22,7 @@ prompt 4 bin\Debug\Tizen.XML + ExtendedDesignGuidelineRules.ruleset pdbonly diff --git a/src/Tizen/Tizen/Log.cs b/src/Tizen/Tizen/Log.cs index 3d9cdc6..775134c 100755 --- a/src/Tizen/Tizen/Log.cs +++ b/src/Tizen/Tizen/Log.cs @@ -15,7 +15,7 @@ namespace Tizen /// /// Provides methods to print log messages to Tizen logging system. /// - public class Log + public static class Log { /// /// Prints a log message with the DEBUG priority. -- 2.7.4