[MediaContent] Remove build warnings 11/150911/1
authorWonyoung Choi <wy80.choi@samsung.com>
Tue, 19 Sep 2017 05:44:56 +0000 (14:44 +0900)
committerWonyoung Choi <wy80.choi@samsung.com>
Tue, 19 Sep 2017 05:44:56 +0000 (14:44 +0900)
Change-Id: I87430cdccd122f872645fe39cd05aed65b6d21d5

src/Tizen.Content.MediaContent/Tizen.Content.MediaContent.sln [changed mode: 0755->0644]
src/Tizen.Content.MediaContent/Tizen.Content.MediaContent/Columns.cs

old mode 100755 (executable)
new mode 100644 (file)
index 5a6ff40..edea6c5
@@ -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
index e3346d2..e6050de 100644 (file)
@@ -14,6 +14,8 @@
  * limitations under the License.
  */
 
+using System;
+
 namespace Tizen.Content.MediaContent
 {
     /// <summary>
@@ -103,10 +105,10 @@ namespace Tizen.Content.MediaContent
         /// <value>The column name for the date added of media.</value>
         /// <remarks>
         /// The value type is integer.
-        /// <see cref="System.DateTimeOffset"/> needs to be converted into the unix time.
+        /// <see cref="DateTimeOffset"/> needs to be converted into the unix time.
         /// </remarks>
         /// <seealso cref="MediaInfo.DateAdded"/>
-        /// <seealso cref="System.DateTimeOffset.ToUnixTimeSeconds"/>
+        /// <seealso cref="DateTimeOffset.ToUnixTimeSeconds"/>
         public static string DateAdded => "MEDIA_ADDED_TIME";
 
         /// <summary>
@@ -115,10 +117,10 @@ namespace Tizen.Content.MediaContent
         /// <value>The column name for the date modified of media.</value>
         /// <remarks>
         /// The value type is integer.
-        /// <see cref="System.DateTimeOffset"/> needs to be converted into the unix time.
+        /// <see cref="DateTimeOffset"/> needs to be converted into the unix time.
         /// </remarks>
         /// <seealso cref="MediaInfo.DateModified"/>
-        /// <seealso cref="System.DateTimeOffset.ToUnixTimeSeconds"/>
+        /// <seealso cref="DateTimeOffset.ToUnixTimeSeconds"/>
         public static string DateModified => "MEDIA_MODIFIED_TIME";
 
         /// <summary>
@@ -127,10 +129,10 @@ namespace Tizen.Content.MediaContent
         /// <value>The column name for the timeline of media.</value>
         /// <remarks>
         /// The value type is integer.
-        /// <see cref="System.DateTimeOffset"/> needs to be converted into the unix time.
+        /// <see cref="DateTimeOffset"/> needs to be converted into the unix time.
         /// </remarks>
         /// <seealso cref="MediaInfo.Timeline"/>
-        /// <seealso cref="System.DateTimeOffset.ToUnixTimeSeconds"/>
+        /// <seealso cref="DateTimeOffset.ToUnixTimeSeconds"/>
         public static string Timeline => "MEDIA_TIMELINE";
 
         /// <summary>