From b57d4e67779bc67070e90b23167a01e37c3a2f8a Mon Sep 17 00:00:00 2001 From: "E.Z. Hart" Date: Mon, 23 Jan 2017 12:41:39 -0700 Subject: [PATCH] Move XF.ConcurrentDictionary to WP8 project (#685) --- Xamarin.Forms.Core/Xamarin.Forms.Core.csproj | 2 -- Xamarin.Forms.Platform.Android/AppCompat/FormsAppCompatActivity.cs | 1 + Xamarin.Forms.Platform.Android/FormsApplicationActivity.cs | 1 + .../ConcurrentDictionary.cs | 0 {Xamarin.Forms.Core => Xamarin.Forms.Platform.WP8}/SplitOrderedList.cs | 0 Xamarin.Forms.Platform.WP8/Xamarin.Forms.Platform.WP8.csproj | 2 ++ Xamarin.Forms.Platform.WinRT/FrameworkElementExtensions.cs | 1 + 7 files changed, 5 insertions(+), 2 deletions(-) rename {Xamarin.Forms.Core => Xamarin.Forms.Platform.WP8}/ConcurrentDictionary.cs (100%) rename {Xamarin.Forms.Core => Xamarin.Forms.Platform.WP8}/SplitOrderedList.cs (100%) diff --git a/Xamarin.Forms.Core/Xamarin.Forms.Core.csproj b/Xamarin.Forms.Core/Xamarin.Forms.Core.csproj index 2e10a1b..ebc9f8b 100644 --- a/Xamarin.Forms.Core/Xamarin.Forms.Core.csproj +++ b/Xamarin.Forms.Core/Xamarin.Forms.Core.csproj @@ -234,7 +234,6 @@ - @@ -256,7 +255,6 @@ - diff --git a/Xamarin.Forms.Platform.Android/AppCompat/FormsAppCompatActivity.cs b/Xamarin.Forms.Platform.Android/AppCompat/FormsAppCompatActivity.cs index 2fe5d5d..223d3a8 100644 --- a/Xamarin.Forms.Platform.Android/AppCompat/FormsAppCompatActivity.cs +++ b/Xamarin.Forms.Platform.Android/AppCompat/FormsAppCompatActivity.cs @@ -1,6 +1,7 @@ #region using System; +using System.Collections.Concurrent; using System.ComponentModel; using System.Linq; using Android.App; diff --git a/Xamarin.Forms.Platform.Android/FormsApplicationActivity.cs b/Xamarin.Forms.Platform.Android/FormsApplicationActivity.cs index 0a2397d..fb1fa17 100644 --- a/Xamarin.Forms.Platform.Android/FormsApplicationActivity.cs +++ b/Xamarin.Forms.Platform.Android/FormsApplicationActivity.cs @@ -1,4 +1,5 @@ using System; +using System.Collections.Concurrent; using System.ComponentModel; using System.Linq; using Android.App; diff --git a/Xamarin.Forms.Core/ConcurrentDictionary.cs b/Xamarin.Forms.Platform.WP8/ConcurrentDictionary.cs similarity index 100% rename from Xamarin.Forms.Core/ConcurrentDictionary.cs rename to Xamarin.Forms.Platform.WP8/ConcurrentDictionary.cs diff --git a/Xamarin.Forms.Core/SplitOrderedList.cs b/Xamarin.Forms.Platform.WP8/SplitOrderedList.cs similarity index 100% rename from Xamarin.Forms.Core/SplitOrderedList.cs rename to Xamarin.Forms.Platform.WP8/SplitOrderedList.cs diff --git a/Xamarin.Forms.Platform.WP8/Xamarin.Forms.Platform.WP8.csproj b/Xamarin.Forms.Platform.WP8/Xamarin.Forms.Platform.WP8.csproj index e78234f..005f503 100644 --- a/Xamarin.Forms.Platform.WP8/Xamarin.Forms.Platform.WP8.csproj +++ b/Xamarin.Forms.Platform.WP8/Xamarin.Forms.Platform.WP8.csproj @@ -145,6 +145,7 @@ + @@ -197,6 +198,7 @@ + diff --git a/Xamarin.Forms.Platform.WinRT/FrameworkElementExtensions.cs b/Xamarin.Forms.Platform.WinRT/FrameworkElementExtensions.cs index f94f3d6..6affa16 100644 --- a/Xamarin.Forms.Platform.WinRT/FrameworkElementExtensions.cs +++ b/Xamarin.Forms.Platform.WinRT/FrameworkElementExtensions.cs @@ -1,4 +1,5 @@ using System; +using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Reflection; -- 2.7.4