From b469f119d2658f41e4f9eaa0349747ab08f9bd7f Mon Sep 17 00:00:00 2001 From: Wonyoung Choi Date: Tue, 19 Sep 2017 14:44:56 +0900 Subject: [PATCH] [MediaContent] Remove build warnings Change-Id: I87430cdccd122f872645fe39cd05aed65b6d21d5 --- .../Tizen.Content.MediaContent.sln | 11 ++++++++++- .../Tizen.Content.MediaContent/Columns.cs | 14 ++++++++------ 2 files changed, 18 insertions(+), 7 deletions(-) mode change 100755 => 100644 src/Tizen.Content.MediaContent/Tizen.Content.MediaContent.sln diff --git a/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent.sln b/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent.sln old mode 100755 new mode 100644 index 5a6ff40..edea6c5 --- a/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent.sln +++ b/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 -VisualStudioVersion = 15.0.26430.12 +VisualStudioVersion = 15.0.26730.15 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tizen.Content.MediaContent", "Tizen.Content.MediaContent.csproj", "{45518596-2EC9-4624-9AE9-D9A0E6708B8C}" EndProject @@ -9,6 +9,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tizen", "..\Tizen\Tizen.csp EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tizen.Log", "..\Tizen.Log\Tizen.Log.csproj", "{4FCA7B32-660F-46BF-820F-EBA7C039733F}" EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tizen.System.Information", "..\Tizen.System.Information\Tizen.System.Information.csproj", "{5DC1DFF0-66E9-4FC7-AF13-51148389C8A8}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -27,8 +29,15 @@ Global {4FCA7B32-660F-46BF-820F-EBA7C039733F}.Debug|Any CPU.Build.0 = Debug|Any CPU {4FCA7B32-660F-46BF-820F-EBA7C039733F}.Release|Any CPU.ActiveCfg = Release|Any CPU {4FCA7B32-660F-46BF-820F-EBA7C039733F}.Release|Any CPU.Build.0 = Release|Any CPU + {5DC1DFF0-66E9-4FC7-AF13-51148389C8A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5DC1DFF0-66E9-4FC7-AF13-51148389C8A8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5DC1DFF0-66E9-4FC7-AF13-51148389C8A8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5DC1DFF0-66E9-4FC7-AF13-51148389C8A8}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {02786CC2-2BE4-450E-958F-FCF4BAEB0B19} + EndGlobalSection EndGlobal diff --git a/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/Columns.cs b/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/Columns.cs index e3346d2..e6050de 100644 --- a/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/Columns.cs +++ b/src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/Columns.cs @@ -14,6 +14,8 @@ * limitations under the License. */ +using System; + namespace Tizen.Content.MediaContent { /// @@ -103,10 +105,10 @@ namespace Tizen.Content.MediaContent /// The column name for the date added of media. /// /// The value type is integer. - /// needs to be converted into the unix time. + /// needs to be converted into the unix time. /// /// - /// + /// public static string DateAdded => "MEDIA_ADDED_TIME"; /// @@ -115,10 +117,10 @@ namespace Tizen.Content.MediaContent /// The column name for the date modified of media. /// /// The value type is integer. - /// needs to be converted into the unix time. + /// needs to be converted into the unix time. /// /// - /// + /// public static string DateModified => "MEDIA_MODIFIED_TIME"; /// @@ -127,10 +129,10 @@ namespace Tizen.Content.MediaContent /// The column name for the timeline of media. /// /// The value type is integer. - /// needs to be converted into the unix time. + /// needs to be converted into the unix time. /// /// - /// + /// public static string Timeline => "MEDIA_TIMELINE"; /// -- 2.7.4