Move XF.ConcurrentDictionary to WP8 project (#685)
authorE.Z. Hart <hartez@users.noreply.github.com>
Mon, 23 Jan 2017 19:41:39 +0000 (12:41 -0700)
committerKangho Hur <kangho.hur@samsung.com>
Fri, 24 Mar 2017 04:12:24 +0000 (13:12 +0900)
Xamarin.Forms.Core/Xamarin.Forms.Core.csproj
Xamarin.Forms.Platform.Android/AppCompat/FormsAppCompatActivity.cs
Xamarin.Forms.Platform.Android/FormsApplicationActivity.cs
Xamarin.Forms.Platform.WP8/ConcurrentDictionary.cs [moved from Xamarin.Forms.Core/ConcurrentDictionary.cs with 100% similarity]
Xamarin.Forms.Platform.WP8/SplitOrderedList.cs [moved from Xamarin.Forms.Core/SplitOrderedList.cs with 100% similarity]
Xamarin.Forms.Platform.WP8/Xamarin.Forms.Platform.WP8.csproj
Xamarin.Forms.Platform.WinRT/FrameworkElementExtensions.cs

index 2e10a1b..ebc9f8b 100644 (file)
     <Compile Include="Properties\GlobalAssemblyInfo.cs" />
     <Compile Include="PropertyChangingEventArgs.cs" />
     <Compile Include="IValueConverter.cs" />
-    <Compile Include="ConcurrentDictionary.cs" />
     <Compile Include="PropertyChangingEventHandler.cs" />
     <Compile Include="ReadOnlyCastingList.cs" />
     <Compile Include="ReadOnlyListAdapter.cs" />
     <Compile Include="SeparatorVisibility.cs" />
     <Compile Include="SizeRequest.cs" />
     <Compile Include="Span.cs" />
-    <Compile Include="SplitOrderedList.cs" />
     <Compile Include="StackOrientation.cs" />
     <Compile Include="StreamWrapper.cs" />
     <Compile Include="SynchronizedList.cs" />
index 2fe5d5d..223d3a8 100644 (file)
@@ -1,6 +1,7 @@
 #region
 
 using System;
+using System.Collections.Concurrent;
 using System.ComponentModel;
 using System.Linq;
 using Android.App;
index 0a2397d..fb1fa17 100644 (file)
@@ -1,4 +1,5 @@
 using System;
+using System.Collections.Concurrent;
 using System.ComponentModel;
 using System.Linq;
 using Android.App;
index e78234f..005f503 100644 (file)
     <Compile Include="BrushHelpers.cs" />
     <Compile Include="CellControl.cs" />
     <Compile Include="CollapseWhenEmptyConverter.cs" />
+    <Compile Include="ConcurrentDictionary.cs" />
     <Compile Include="Deserializer.cs" />
     <Compile Include="CustomContextMenu.cs" />
     <Compile Include="ElementChangedEventArgs.cs" />
     <Compile Include="ScrollViewRenderer.cs" />
     <Compile Include="SearchBarRenderer.cs" />
     <Compile Include="SliderRenderer.cs" />
+    <Compile Include="SplitOrderedList.cs" />
     <Compile Include="StepperRenderer.cs" />
     <Compile Include="SwitchRenderer.cs" />
     <Compile Include="TabbedPageRenderer.cs" />
index f94f3d6..6affa16 100644 (file)
@@ -1,4 +1,5 @@
 using System;
+using System.Collections.Concurrent;
 using System.Collections.Generic;
 using System.Linq;
 using System.Reflection;