From 36897b782e56683150a55d0462499221c887710f Mon Sep 17 00:00:00 2001 From: chanywa Date: Thu, 6 Jul 2017 17:56:59 +0900 Subject: [PATCH] Fix to keep the order of properties in SearchPreference Change-Id: I0a933e13f46a790ebdd842d0c24961698e12ab39 --- packaging/csapi-maps.spec | 2 +- src/Tizen.Maps/Tizen.Maps.csproj | 4 ++-- src/Tizen.Maps/Tizen.Maps/SearchPreference.cs | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/packaging/csapi-maps.spec b/packaging/csapi-maps.spec index 772424c..471c98a 100644 --- a/packaging/csapi-maps.spec +++ b/packaging/csapi-maps.spec @@ -1,6 +1,6 @@ Name: csapi-maps Summary: Tizen Map Service API for C# -Version: 1.0.12 +Version: 1.0.13 Release: 1 Group: Development/Libraries License: Apache-2.0 and SAMSUNG diff --git a/src/Tizen.Maps/Tizen.Maps.csproj b/src/Tizen.Maps/Tizen.Maps.csproj index b073101..376f33d 100644 --- a/src/Tizen.Maps/Tizen.Maps.csproj +++ b/src/Tizen.Maps/Tizen.Maps.csproj @@ -1,7 +1,7 @@  - 1.0.12 + 1.0.13 Samsung Electronics © Samsung Electronics Co., Ltd All Rights Reserved Map Services API for Tizen .NET @@ -9,7 +9,7 @@ https://www.apache.org/licenses/LICENSE-2.0 https://developer.tizen.org/sites/default/files/images/tizen-pinwheel-on-light-rgb_64_64.png - + netstandard1.3 True diff --git a/src/Tizen.Maps/Tizen.Maps/SearchPreference.cs b/src/Tizen.Maps/Tizen.Maps/SearchPreference.cs index 288c8da..fc7da53 100755 --- a/src/Tizen.Maps/Tizen.Maps/SearchPreference.cs +++ b/src/Tizen.Maps/Tizen.Maps/SearchPreference.cs @@ -136,6 +136,7 @@ namespace Tizen.Maps { foreach (var prop in value) { + _properties[prop.Key] = prop.Value; handle.SetProperty(prop.Key, prop.Value); Log.Info(string.Format("Properties is changed to [{0}, {1}]", prop.Key, prop.Value)); } -- 2.7.4