From 9972bf87b4f27d9c8f358ef8414ac1ab957a2f0f Mon Sep 17 00:00:00 2001 From: Jo Shields Date: Wed, 19 Feb 2014 22:12:43 +0000 Subject: Imported Upstream version 3.2.8+dfsg --- .../Rx_Xamarin/ReactiveExtensionsForAndroid.nuspec | 29 ++ .../Rx_Xamarin/ReactiveExtensionsForiOS.nuspec | 28 ++ .../NET/Source/Rx_Xamarin/Rx_Xamarin_android.sln | 37 +- .../rx/Rx/NET/Source/Rx_Xamarin/Rx_Xamarin_iOS.sln | 19 -- .../rx/Rx/NET/Source/Rx_Xamarin/android/Makefile | 11 - .../ReactiveTestApplication/Assets/AboutAssets.txt | 19 ++ .../ReactiveTestApplication/MainActivity.cs | 19 ++ .../Properties/AndroidManifest.xml | 6 + .../Properties/AssemblyInfo.cs | 23 ++ .../ReactiveTestApplication.csproj | 68 ++++ .../Resources/AboutResources.txt | 44 +++ .../Resources/Resource.designer.cs | 171 ++++++++++ .../Resources/drawable/Icon.png | Bin 0 -> 2574 bytes .../Source/Rx_Xamarin/android/andr-unit-rx.patch | 74 ---- .../android/libs/Mono.Reactive.Testing.dll.mdb | Bin 6251 -> 0 bytes .../android/libs/System.Reactive.Core.dll.mdb | Bin 49867 -> 0 bytes .../android/libs/System.Reactive.Debugger.dll.mdb | Bin 323 -> 0 bytes .../libs/System.Reactive.Experimental.dll.mdb | Bin 8347 -> 0 bytes .../libs/System.Reactive.Interfaces.dll.mdb | Bin 112 -> 0 bytes .../android/libs/System.Reactive.Linq.dll.mdb | Bin 268498 -> 0 bytes .../libs/System.Reactive.PlatformServices.dll.mdb | Bin 8154 -> 0 bytes .../android/libs/System.Reactive.Providers.dll.mdb | Bin 77332 -> 0 bytes .../libs/System.Reactive.Runtime.Remoting.dll.mdb | Bin 112 -> 0 bytes .../android_Mono.Reactive.Testing.csproj | 42 ++- .../android_System.Reactive.Core.csproj | 33 +- .../android_System.Reactive.Debugger.csproj | 55 ++- .../android_System.Reactive.Experimental.csproj | 41 ++- .../android_System.Reactive.Interfaces.csproj | 20 +- .../android_System.Reactive.Linq.csproj | 40 +-- ...android_System.Reactive.PlatformServices.csproj | 47 ++- .../android_System.Reactive.Providers.csproj | 47 ++- ...android_System.Reactive.Runtime.Remoting.csproj | 34 +- .../android_Tests.System.Reactive.csproj | 99 +++--- .../samples/GithubApiClientSample/MainActivity.cs | 2 +- .../Properties/AssemblyInfo.cs | 2 +- .../Resources/Resource.designer.cs | 2 +- .../ReactiveAndroidSample.sln | 20 ++ .../ReactiveAndroidSample/Assets/AboutAssets.txt | 19 ++ .../ReactiveAndroidSample/MainActivity.cs | 47 +++ .../Properties/AssemblyInfo.cs | 28 ++ .../ReactiveAndroidSample.csproj | 73 ++++ .../Resources/AboutResources.txt | 44 +++ .../Resources/Resource.designer.cs | 115 +++++++ .../Resources/drawable/Icon.png | Bin 0 -> 2574 bytes .../Resources/layout/Main.axml | 16 + .../Resources/values/Strings.xml | 5 + .../iOS/Tests.System.Reactive/AppDelegate.cs | 2 +- .../Rx_Xamarin/iOS/Tests.System.Reactive/Main.cs | 2 +- .../NET/Source/Rx_Xamarin/iOS/ios_UnitTest/Main.cs | 2 +- .../iOS/ios_UnitTest/UnitTestAppDelegate.cs | 2 +- .../ios_Mono.Reactive.Testing.csproj | 51 ++- .../ios_System.Reactive.Core.csproj | 186 +++++----- .../ios_System.Reactive.Debugger.csproj | 36 +- .../ios_System.Reactive.Experimental.csproj | 48 ++- .../ios_System.Reactive.Interfaces.csproj | 70 ++-- .../ios_System.Reactive.Linq.csproj | 374 ++++++++++----------- .../ios_System.Reactive.PlatformServices.csproj | 72 ++-- .../ios_System.Reactive.Providers.csproj | 58 ++-- .../ios_System.Reactive.Runtime.Remoting.csproj | 34 +- .../ios_System.Reactive.Windows.Forms.csproj | 34 +- .../ios_System.Reactive.Windows.Threading.csproj | 48 ++- .../ios_Tests.System.Reactive.csproj | 217 ++++++------ 62 files changed, 1618 insertions(+), 997 deletions(-) create mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/ReactiveExtensionsForAndroid.nuspec create mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/ReactiveExtensionsForiOS.nuspec mode change 100755 => 100644 external/rx/Rx/NET/Source/Rx_Xamarin/Rx_Xamarin_android.sln delete mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/Makefile create mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Assets/AboutAssets.txt create mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/MainActivity.cs create mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Properties/AndroidManifest.xml create mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Properties/AssemblyInfo.cs create mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/ReactiveTestApplication.csproj create mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Resources/AboutResources.txt create mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Resources/Resource.designer.cs create mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Resources/drawable/Icon.png delete mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/andr-unit-rx.patch delete mode 100755 external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/Mono.Reactive.Testing.dll.mdb delete mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Core.dll.mdb delete mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Debugger.dll.mdb delete mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Experimental.dll.mdb delete mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Interfaces.dll.mdb delete mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Linq.dll.mdb delete mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.PlatformServices.dll.mdb delete mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Providers.dll.mdb delete mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Runtime.Remoting.dll.mdb mode change 100755 => 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/Mono.Reactive.Testing/android_Mono.Reactive.Testing.csproj mode change 100755 => 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Core/android_System.Reactive.Core.csproj mode change 100755 => 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Debugger/android_System.Reactive.Debugger.csproj mode change 100755 => 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Experimental/android_System.Reactive.Experimental.csproj mode change 100755 => 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Linq/android_System.Reactive.Linq.csproj mode change 100755 => 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.PlatformServices/android_System.Reactive.PlatformServices.csproj mode change 100755 => 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Providers/android_System.Reactive.Providers.csproj mode change 100755 => 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Runtime.Remoting/android_System.Reactive.Runtime.Remoting.csproj mode change 100755 => 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/Tests.System.Reactive/android_Tests.System.Reactive.csproj create mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample.sln create mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Assets/AboutAssets.txt create mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/MainActivity.cs create mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Properties/AssemblyInfo.cs create mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/ReactiveAndroidSample.csproj create mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Resources/AboutResources.txt create mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Resources/Resource.designer.cs create mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Resources/drawable/Icon.png create mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Resources/layout/Main.axml create mode 100644 external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Resources/values/Strings.xml (limited to 'external/rx/Rx/NET/Source/Rx_Xamarin') diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/ReactiveExtensionsForAndroid.nuspec b/external/rx/Rx/NET/Source/Rx_Xamarin/ReactiveExtensionsForAndroid.nuspec new file mode 100644 index 0000000000..df4659482c --- /dev/null +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/ReactiveExtensionsForAndroid.nuspec @@ -0,0 +1,29 @@ + + + + ReactiveExtensionsForAndroid + 2.1.0 + Microsoft Open Technologies, Inc + Xamarin Inc. + https://raw.github.com/mono/rx/master/Rx/NET/Source/license.txt + https://github.com/mono/rx + https://raw.github.com/mono/rx/master/Rx/NET/Resources/Artwork/Logo_Color.png + false + a library for composing asynchronous and event-based programs using observable sequences and LINQ-style query operators. (Android) + Initial NuGet package release. WARNING: this won't work as expected if you are not using Xamarin.Android v4.7.x or later, which ships with some runtime bugfixes. + Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. + Rx Reactive Linq Xamarin Android + + + + + + + + + + + + + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/ReactiveExtensionsForiOS.nuspec b/external/rx/Rx/NET/Source/Rx_Xamarin/ReactiveExtensionsForiOS.nuspec new file mode 100644 index 0000000000..9f417d305a --- /dev/null +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/ReactiveExtensionsForiOS.nuspec @@ -0,0 +1,28 @@ + + + + ReactiveExtensionsForiOS + 2.1.0 + Microsoft Open Technologies, Inc + Xamarin Inc. + https://raw.github.com/mono/rx/master/Rx/NET/Source/license.txt + https://github.com/mono/rx + https://raw.github.com/mono/rx/master/Rx/NET/Resources/Artwork/Logo_Color.png + false + a library for composing asynchronous and event-based programs using observable sequences and LINQ-style query operators. (iOS) + Initial NuGet package release. WARNING: Rx depends on generics a lot, and they will fail on device. You should really test your code on device. Also you want to use the generic enhanced versions of Xamarin.iOS. + Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. + Rx Reactive Linq Xamarin iOS + + + + + + + + + + + + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/Rx_Xamarin_android.sln b/external/rx/Rx/NET/Source/Rx_Xamarin/Rx_Xamarin_android.sln old mode 100755 new mode 100644 index 0f16f4b96e..ef906455df --- a/external/rx/Rx/NET/Source/Rx_Xamarin/Rx_Xamarin_android.sln +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/Rx_Xamarin_android.sln @@ -19,20 +19,14 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "android_System.Reactive.Deb EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "android_System.Reactive.Providers", "android\rx\System.Reactive.Providers\android_System.Reactive.Providers.csproj", "{E662282B-4341-4F86-AAAA-A942335B47FB}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "android_System.Reactive.Runtime.Remoting", "android\rx\System.Reactive.Runtime.Remoting\android_System.Reactive.Runtime.Remoting.csproj", "{A153A379-670C-42C2-9018-FC0D933A4F7F}" -EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{BC795ED9-C969-496A-8433-C47BA91CA87C}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Android.NUnitLite", "android\Andr.Unit\Android.NUnitLite\Android.NUnitLite.csproj", "{6A005891-A3D6-4398-A729-F645397D573A}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MonoDroid.Dialog", "android\MonoDroid.Dialog\MonoDroid.Dialog\MonoDroid.Dialog.csproj", "{33044C7B-47A4-4113-A61A-EB429407F818}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Andr.Unit", "android\Andr.Unit\Andr.Unit\Andr.Unit.csproj", "{47673BC8-F954-4304-9472-2773AA5A94EB}" -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "android_Mono.Reactive.Testing", "android\rx\Mono.Reactive.Testing\android_Mono.Reactive.Testing.csproj", "{CB2AB716-BFCB-43BC-A03B-A3BDA427746C}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "android_Tests.System.Reactive", "android\rx\Tests.System.Reactive\android_Tests.System.Reactive.csproj", "{73C5260F-8972-4E7C-822B-1A3A0358FA0B}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReactiveTestApplication", "android\ReactiveTestApplication\ReactiveTestApplication.csproj", "{307C128B-762F-478D-AF70-485A1792DA9A}" +EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{C23266F1-B70D-414C-88CD-F5BD27F6ACE3}" EndProject Global @@ -45,22 +39,14 @@ Global {00DC3654-E373-4E3F-80FE-109F795ADF1F}.Debug|Any CPU.Build.0 = Debug|Any CPU {00DC3654-E373-4E3F-80FE-109F795ADF1F}.Release|Any CPU.ActiveCfg = Release|Any CPU {00DC3654-E373-4E3F-80FE-109F795ADF1F}.Release|Any CPU.Build.0 = Release|Any CPU - {33044C7B-47A4-4113-A61A-EB429407F818}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {33044C7B-47A4-4113-A61A-EB429407F818}.Debug|Any CPU.Build.0 = Debug|Any CPU - {33044C7B-47A4-4113-A61A-EB429407F818}.Release|Any CPU.ActiveCfg = Release|Any CPU - {33044C7B-47A4-4113-A61A-EB429407F818}.Release|Any CPU.Build.0 = Release|Any CPU - {47673BC8-F954-4304-9472-2773AA5A94EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {47673BC8-F954-4304-9472-2773AA5A94EB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {47673BC8-F954-4304-9472-2773AA5A94EB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {47673BC8-F954-4304-9472-2773AA5A94EB}.Release|Any CPU.Build.0 = Release|Any CPU + {307C128B-762F-478D-AF70-485A1792DA9A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {307C128B-762F-478D-AF70-485A1792DA9A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {307C128B-762F-478D-AF70-485A1792DA9A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {307C128B-762F-478D-AF70-485A1792DA9A}.Release|Any CPU.Build.0 = Release|Any CPU {4FA878DC-6E88-43C4-B37B-8C1151CEC56F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {4FA878DC-6E88-43C4-B37B-8C1151CEC56F}.Debug|Any CPU.Build.0 = Debug|Any CPU {4FA878DC-6E88-43C4-B37B-8C1151CEC56F}.Release|Any CPU.ActiveCfg = Release|Any CPU {4FA878DC-6E88-43C4-B37B-8C1151CEC56F}.Release|Any CPU.Build.0 = Release|Any CPU - {6A005891-A3D6-4398-A729-F645397D573A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {6A005891-A3D6-4398-A729-F645397D573A}.Debug|Any CPU.Build.0 = Debug|Any CPU - {6A005891-A3D6-4398-A729-F645397D573A}.Release|Any CPU.ActiveCfg = Release|Any CPU - {6A005891-A3D6-4398-A729-F645397D573A}.Release|Any CPU.Build.0 = Release|Any CPU {73C5260F-8972-4E7C-822B-1A3A0358FA0B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {73C5260F-8972-4E7C-822B-1A3A0358FA0B}.Debug|Any CPU.Build.0 = Debug|Any CPU {73C5260F-8972-4E7C-822B-1A3A0358FA0B}.Release|Any CPU.ActiveCfg = Release|Any CPU @@ -69,10 +55,6 @@ Global {9360E845-D79D-4288-9100-63A80FAD2BF0}.Debug|Any CPU.Build.0 = Debug|Any CPU {9360E845-D79D-4288-9100-63A80FAD2BF0}.Release|Any CPU.ActiveCfg = Release|Any CPU {9360E845-D79D-4288-9100-63A80FAD2BF0}.Release|Any CPU.Build.0 = Release|Any CPU - {A153A379-670C-42C2-9018-FC0D933A4F7F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A153A379-670C-42C2-9018-FC0D933A4F7F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A153A379-670C-42C2-9018-FC0D933A4F7F}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A153A379-670C-42C2-9018-FC0D933A4F7F}.Release|Any CPU.Build.0 = Release|Any CPU {CB2AB716-BFCB-43BC-A03B-A3BDA427746C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {CB2AB716-BFCB-43BC-A03B-A3BDA427746C}.Debug|Any CPU.Build.0 = Debug|Any CPU {CB2AB716-BFCB-43BC-A03B-A3BDA427746C}.Release|Any CPU.ActiveCfg = Release|Any CPU @@ -133,14 +115,11 @@ Global {00DC3654-E373-4E3F-80FE-109F795ADF1F} = {9AF9A490-2CD2-47CE-9E01-F3A799524F58} {9360E845-D79D-4288-9100-63A80FAD2BF0} = {9AF9A490-2CD2-47CE-9E01-F3A799524F58} {E662282B-4341-4F86-AAAA-A942335B47FB} = {9AF9A490-2CD2-47CE-9E01-F3A799524F58} - {A153A379-670C-42C2-9018-FC0D933A4F7F} = {9AF9A490-2CD2-47CE-9E01-F3A799524F58} - {6A005891-A3D6-4398-A729-F645397D573A} = {BC795ED9-C969-496A-8433-C47BA91CA87C} - {33044C7B-47A4-4113-A61A-EB429407F818} = {BC795ED9-C969-496A-8433-C47BA91CA87C} - {47673BC8-F954-4304-9472-2773AA5A94EB} = {BC795ED9-C969-496A-8433-C47BA91CA87C} {CB2AB716-BFCB-43BC-A03B-A3BDA427746C} = {BC795ED9-C969-496A-8433-C47BA91CA87C} {73C5260F-8972-4E7C-822B-1A3A0358FA0B} = {BC795ED9-C969-496A-8433-C47BA91CA87C} + {307C128B-762F-478D-AF70-485A1792DA9A} = {BC795ED9-C969-496A-8433-C47BA91CA87C} EndGlobalSection GlobalSection(MonoDevelopProperties) = preSolution - StartupItem = android\Andr.Unit\Andr.Unit\Andr.Unit.csproj + StartupItem = android\ReactiveTestApplication\ReactiveTestApplication.csproj EndGlobalSection EndGlobal diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/Rx_Xamarin_iOS.sln b/external/rx/Rx/NET/Source/Rx_Xamarin/Rx_Xamarin_iOS.sln index 181d00d95a..a0928e6979 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/Rx_Xamarin_iOS.sln +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/Rx_Xamarin_iOS.sln @@ -25,8 +25,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ios_System.Reactive.Experim EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ios_System.Reactive.Debugger", "iOS\rx\System.Reactive.Debugger\ios_System.Reactive.Debugger.csproj", "{B41CB61A-DCA0-4539-8F99-7B3499E18E6D}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ios_System.Reactive.Runtime.Remoting", "iOS\rx\System.Reactive.Runtime.Remoting\ios_System.Reactive.Runtime.Remoting.csproj", "{92857C8E-0E83-4D02-A831-8AF3FED43336}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -151,22 +149,6 @@ Global {79A43CEB-1A18-49EA-AAC4-B72B9C90BF5A}.Release|iPhone.Build.0 = Release|Any CPU {79A43CEB-1A18-49EA-AAC4-B72B9C90BF5A}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU {79A43CEB-1A18-49EA-AAC4-B72B9C90BF5A}.Release|iPhoneSimulator.Build.0 = Release|Any CPU - {92857C8E-0E83-4D02-A831-8AF3FED43336}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU - {92857C8E-0E83-4D02-A831-8AF3FED43336}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU - {92857C8E-0E83-4D02-A831-8AF3FED43336}.AppStore|iPhone.ActiveCfg = Release|Any CPU - {92857C8E-0E83-4D02-A831-8AF3FED43336}.AppStore|iPhone.Build.0 = Release|Any CPU - {92857C8E-0E83-4D02-A831-8AF3FED43336}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {92857C8E-0E83-4D02-A831-8AF3FED43336}.Debug|Any CPU.Build.0 = Debug|Any CPU - {92857C8E-0E83-4D02-A831-8AF3FED43336}.Debug|iPhone.ActiveCfg = Debug|Any CPU - {92857C8E-0E83-4D02-A831-8AF3FED43336}.Debug|iPhone.Build.0 = Debug|Any CPU - {92857C8E-0E83-4D02-A831-8AF3FED43336}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU - {92857C8E-0E83-4D02-A831-8AF3FED43336}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU - {92857C8E-0E83-4D02-A831-8AF3FED43336}.Release|Any CPU.ActiveCfg = Release|Any CPU - {92857C8E-0E83-4D02-A831-8AF3FED43336}.Release|Any CPU.Build.0 = Release|Any CPU - {92857C8E-0E83-4D02-A831-8AF3FED43336}.Release|iPhone.ActiveCfg = Release|Any CPU - {92857C8E-0E83-4D02-A831-8AF3FED43336}.Release|iPhone.Build.0 = Release|Any CPU - {92857C8E-0E83-4D02-A831-8AF3FED43336}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU - {92857C8E-0E83-4D02-A831-8AF3FED43336}.Release|iPhoneSimulator.Build.0 = Release|Any CPU {A67F34B5-75C1-4319-A93E-93DF87E728A4}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU {A67F34B5-75C1-4319-A93E-93DF87E728A4}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU {A67F34B5-75C1-4319-A93E-93DF87E728A4}.AppStore|iPhone.ActiveCfg = Release|Any CPU @@ -220,7 +202,6 @@ Global {79A43CEB-1A18-49EA-AAC4-B72B9C90BF5A} = {A38611CA-29F7-497B-9E9D-945943F3E5A0} {24F995BD-7075-489C-B7A5-7FDE08C304B6} = {A38611CA-29F7-497B-9E9D-945943F3E5A0} {B41CB61A-DCA0-4539-8F99-7B3499E18E6D} = {A38611CA-29F7-497B-9E9D-945943F3E5A0} - {92857C8E-0E83-4D02-A831-8AF3FED43336} = {A38611CA-29F7-497B-9E9D-945943F3E5A0} EndGlobalSection GlobalSection(MonoDevelopProperties) = preSolution StartupItem = iOS\ios_UnitTest\ios_UnitTest.csproj diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/Makefile b/external/rx/Rx/NET/Source/Rx_Xamarin/android/Makefile deleted file mode 100644 index d2ecc1870f..0000000000 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/android/Makefile +++ /dev/null @@ -1,11 +0,0 @@ - -all: MonoDroid.Dialog Andr.Unit - -MonoDroid.Dialog: - git clone git://github.com/atsushieno/MonoDroid.Dialog.git - -Andr.Unit: - git clone git://github.com/pjcollins/Andr.Unit.git - cd Andr.Unit && git checkout bae4bbfc && patch -i ../andr-unit-rx.patch -p1 || exit 1 - - diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Assets/AboutAssets.txt b/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Assets/AboutAssets.txt new file mode 100644 index 0000000000..a9b0638eb1 --- /dev/null +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Assets/AboutAssets.txt @@ -0,0 +1,19 @@ +Any raw assets you want to be deployed with your application can be placed in +this directory (and child directories) and given a Build Action of "AndroidAsset". + +These files will be deployed with your package and will be accessible using Android's +AssetManager, like this: + +public class ReadAsset : Activity +{ + protected override void OnCreate (Bundle bundle) + { + base.OnCreate (bundle); + + InputStream input = Assets.Open ("my_asset.txt"); + } +} + +Additionally, some Android functions will automatically load asset files: + +Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/MainActivity.cs b/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/MainActivity.cs new file mode 100644 index 0000000000..c350b3394d --- /dev/null +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/MainActivity.cs @@ -0,0 +1,19 @@ +using System.Reflection; +using Android.App; +using Android.OS; +using Xamarin.Android.NUnitLite; + +namespace ReactiveTestApplication +{ + [Activity (Label = "ReactiveTestApplication", MainLauncher = true)] + public class MainActivity : TestSuiteActivity + { + protected override void OnCreate (Bundle bundle) + { + AddTest (typeof (ReactiveTests.Extensions).Assembly); + // Once you called base.OnCreate(), you cannot add more assemblies. + base.OnCreate (bundle); + } + } +} + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Properties/AndroidManifest.xml b/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Properties/AndroidManifest.xml new file mode 100644 index 0000000000..9431e6d459 --- /dev/null +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Properties/AndroidManifest.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Properties/AssemblyInfo.cs b/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..2ae849ff32 --- /dev/null +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Properties/AssemblyInfo.cs @@ -0,0 +1,23 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using Android.App; + +// Information about this assembly is defined by the following attributes. +// Change them to the values specific to your project. +[assembly: AssemblyTitle ("ReactiveTestApplication")] +[assembly: AssemblyDescription ("")] +[assembly: AssemblyConfiguration ("")] +[assembly: AssemblyCompany ("")] +[assembly: AssemblyProduct ("")] +[assembly: AssemblyCopyright ("atsushi")] +[assembly: AssemblyTrademark ("")] +[assembly: AssemblyCulture ("")] +// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". +// The form "{Major}.{Minor}.*" will automatically update the build and revision, +// and "{Major}.{Minor}.{Build}.*" will update just the revision. +[assembly: AssemblyVersion ("1.0.0")] +// The following attributes are used to specify the signing key for the assembly, +// if desired. See the Mono documentation for more information about signing. +//[assembly: AssemblyDelaySign(false)] +//[assembly: AssemblyKeyFile("")] + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/ReactiveTestApplication.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/ReactiveTestApplication.csproj new file mode 100644 index 0000000000..4ece925e78 --- /dev/null +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/ReactiveTestApplication.csproj @@ -0,0 +1,68 @@ + + + + Debug + AnyCPU + 10.0.0 + 2.0 + {307C128B-762F-478D-AF70-485A1792DA9A} + {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + Library + ReactiveTestApplication + True + Resources\Resource.designer.cs + Resource + Resources + Assets + False + ReactiveTestApplication + Properties\AndroidManifest.xml + + + true + full + false + bin\Debug + DEBUG; + prompt + 4 + None + false + + + full + true + bin\Release + prompt + 4 + false + false + + + + + + + + + + + + + + + + + + + + + + + + + {73C5260F-8972-4E7C-822B-1A3A0358FA0B} + android_Tests.System.Reactive + + + \ No newline at end of file diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Resources/AboutResources.txt b/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Resources/AboutResources.txt new file mode 100644 index 0000000000..10f52d4602 --- /dev/null +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Resources/AboutResources.txt @@ -0,0 +1,44 @@ +Images, layout descriptions, binary blobs and string dictionaries can be included +in your application as resource files. Various Android APIs are designed to +operate on the resource IDs instead of dealing with images, strings or binary blobs +directly. + +For example, a sample Android app that contains a user interface layout (main.axml), +an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png) +would keep its resources in the "Resources" directory of the application: + +Resources/ + drawable/ + icon.png + + layout/ + main.axml + + values/ + strings.xml + +In order to get the build system to recognize Android resources, set the build action to +"AndroidResource". The native Android APIs do not operate directly with filenames, but +instead operate on resource IDs. When you compile an Android application that uses resources, +the build system will package the resources for distribution and generate a class called "R" +(this is an Android convention) that contains the tokens for each one of the resources +included. For example, for the above Resources layout, this is what the R class would expose: + +public class R { + public class drawable { + public const int icon = 0x123; + } + + public class layout { + public const int main = 0x456; + } + + public class strings { + public const int first_string = 0xabc; + public const int second_string = 0xbcd; + } +} + +You would then use R.drawable.icon to reference the drawable/icon.png file, or R.layout.main +to reference the layout/main.axml file, or R.strings.first_string to reference the first +string in the dictionary file values/strings.xml. diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Resources/Resource.designer.cs b/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Resources/Resource.designer.cs new file mode 100644 index 0000000000..1e5e640ddb --- /dev/null +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Resources/Resource.designer.cs @@ -0,0 +1,171 @@ +#pragma warning disable 1591 +// ------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Mono Runtime Version: 4.0.30319.17020 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +// ------------------------------------------------------------------------------ + +[assembly: Android.Runtime.ResourceDesignerAttribute("ReactiveTestApplication.Resource", IsApplication=true)] + +namespace ReactiveTestApplication +{ + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "1.0.0.0")] + public partial class Resource + { + + static Resource() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + public static void UpdateIdValues() + { + global::Xamarin.Android.NUnitLite.Resource.Id.OptionHostName = global::ReactiveTestApplication.Resource.Id.OptionHostName; + global::Xamarin.Android.NUnitLite.Resource.Id.OptionPort = global::ReactiveTestApplication.Resource.Id.OptionPort; + global::Xamarin.Android.NUnitLite.Resource.Id.OptionRemoteServer = global::ReactiveTestApplication.Resource.Id.OptionRemoteServer; + global::Xamarin.Android.NUnitLite.Resource.Id.OptionsButton = global::ReactiveTestApplication.Resource.Id.OptionsButton; + global::Xamarin.Android.NUnitLite.Resource.Id.ResultFullName = global::ReactiveTestApplication.Resource.Id.ResultFullName; + global::Xamarin.Android.NUnitLite.Resource.Id.ResultMessage = global::ReactiveTestApplication.Resource.Id.ResultMessage; + global::Xamarin.Android.NUnitLite.Resource.Id.ResultResultState = global::ReactiveTestApplication.Resource.Id.ResultResultState; + global::Xamarin.Android.NUnitLite.Resource.Id.ResultStackTrace = global::ReactiveTestApplication.Resource.Id.ResultStackTrace; + global::Xamarin.Android.NUnitLite.Resource.Id.ResultsFailed = global::ReactiveTestApplication.Resource.Id.ResultsFailed; + global::Xamarin.Android.NUnitLite.Resource.Id.ResultsId = global::ReactiveTestApplication.Resource.Id.ResultsId; + global::Xamarin.Android.NUnitLite.Resource.Id.ResultsIgnored = global::ReactiveTestApplication.Resource.Id.ResultsIgnored; + global::Xamarin.Android.NUnitLite.Resource.Id.ResultsInconclusive = global::ReactiveTestApplication.Resource.Id.ResultsInconclusive; + global::Xamarin.Android.NUnitLite.Resource.Id.ResultsMessage = global::ReactiveTestApplication.Resource.Id.ResultsMessage; + global::Xamarin.Android.NUnitLite.Resource.Id.ResultsPassed = global::ReactiveTestApplication.Resource.Id.ResultsPassed; + global::Xamarin.Android.NUnitLite.Resource.Id.ResultsResult = global::ReactiveTestApplication.Resource.Id.ResultsResult; + global::Xamarin.Android.NUnitLite.Resource.Id.RunTestsButton = global::ReactiveTestApplication.Resource.Id.RunTestsButton; + global::Xamarin.Android.NUnitLite.Resource.Id.TestSuiteListView = global::ReactiveTestApplication.Resource.Id.TestSuiteListView; + global::Xamarin.Android.NUnitLite.Resource.Layout.options = global::ReactiveTestApplication.Resource.Layout.options; + global::Xamarin.Android.NUnitLite.Resource.Layout.results = global::ReactiveTestApplication.Resource.Layout.results; + global::Xamarin.Android.NUnitLite.Resource.Layout.test_result = global::ReactiveTestApplication.Resource.Layout.test_result; + global::Xamarin.Android.NUnitLite.Resource.Layout.test_suite = global::ReactiveTestApplication.Resource.Layout.test_suite; + } + + public partial class Attribute + { + + static Attribute() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Attribute() + { + } + } + + public partial class Drawable + { + + // aapt resource value: 0x7f020000 + public const int Icon = 2130837504; + + static Drawable() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Drawable() + { + } + } + + public partial class Id + { + + // aapt resource value: 0x7f040001 + public const int OptionHostName = 2130968577; + + // aapt resource value: 0x7f040002 + public const int OptionPort = 2130968578; + + // aapt resource value: 0x7f040000 + public const int OptionRemoteServer = 2130968576; + + // aapt resource value: 0x7f040010 + public const int OptionsButton = 2130968592; + + // aapt resource value: 0x7f04000a + public const int ResultFullName = 2130968586; + + // aapt resource value: 0x7f04000c + public const int ResultMessage = 2130968588; + + // aapt resource value: 0x7f04000b + public const int ResultResultState = 2130968587; + + // aapt resource value: 0x7f04000d + public const int ResultStackTrace = 2130968589; + + // aapt resource value: 0x7f040006 + public const int ResultsFailed = 2130968582; + + // aapt resource value: 0x7f040003 + public const int ResultsId = 2130968579; + + // aapt resource value: 0x7f040007 + public const int ResultsIgnored = 2130968583; + + // aapt resource value: 0x7f040008 + public const int ResultsInconclusive = 2130968584; + + // aapt resource value: 0x7f040009 + public const int ResultsMessage = 2130968585; + + // aapt resource value: 0x7f040005 + public const int ResultsPassed = 2130968581; + + // aapt resource value: 0x7f040004 + public const int ResultsResult = 2130968580; + + // aapt resource value: 0x7f04000f + public const int RunTestsButton = 2130968591; + + // aapt resource value: 0x7f04000e + public const int TestSuiteListView = 2130968590; + + static Id() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Id() + { + } + } + + public partial class Layout + { + + // aapt resource value: 0x7f030000 + public const int options = 2130903040; + + // aapt resource value: 0x7f030001 + public const int results = 2130903041; + + // aapt resource value: 0x7f030002 + public const int test_result = 2130903042; + + // aapt resource value: 0x7f030003 + public const int test_suite = 2130903043; + + static Layout() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Layout() + { + } + } + } +} +#pragma warning restore 1591 diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Resources/drawable/Icon.png b/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Resources/drawable/Icon.png new file mode 100644 index 0000000000..a07c69fa5a Binary files /dev/null and b/external/rx/Rx/NET/Source/Rx_Xamarin/android/ReactiveTestApplication/Resources/drawable/Icon.png differ diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/andr-unit-rx.patch b/external/rx/Rx/NET/Source/Rx_Xamarin/android/andr-unit-rx.patch deleted file mode 100644 index 8f19009bfc..0000000000 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/android/andr-unit-rx.patch +++ /dev/null @@ -1,74 +0,0 @@ -diff --git a/Andr.Unit/Andr.Unit.csproj b/Andr.Unit/Andr.Unit.csproj -index 1d64a1b..0ce74c0 100644 ---- a/Andr.Unit/Andr.Unit.csproj -+++ b/Andr.Unit/Andr.Unit.csproj -@@ -115,9 +115,17 @@ - {6A005891-A3D6-4398-A729-F645397D573A} - Android.NUnitLite - -- -- {06D00E82-E637-4A8A-95BE-3E1ADE925B9B} -- m4a.tests -+ -+ {35DEE616-4AD5-4560-9E19-A86836857626} -+ android_Mono.Reactive.Testing -+ -+ -+ {33044C7B-47A4-4113-A61A-EB429407F818} -+ MonoDroid.Dialog -+ -+ -+ {93322E90-1596-443D-AE38-F4B4D868BE24} -+ android_Tests.System.Reactive - - - -\ No newline at end of file -diff --git a/Andr.Unit/MainActivity.cs b/Andr.Unit/MainActivity.cs -index ce19029..2a2da07 100644 ---- a/Andr.Unit/MainActivity.cs -+++ b/Andr.Unit/MainActivity.cs -@@ -32,7 +32,7 @@ namespace Andr.Unit - // tests can be inside the main assembly - AddTest (Assembly.GetExecutingAssembly ()); - // or in any reference assemblies -- AddTest (typeof (m4a.tests.RunnerTest).Assembly); -+ AddTest (typeof (ReactiveTests.Extensions).Assembly); - // or in any assembly that you load (since JIT is available) - - #if false -diff --git a/Andr.Unit/Resources/Resource.designer.cs b/Andr.Unit/Resources/Resource.designer.cs -index 291e7c6..b09da34 100644 ---- a/Andr.Unit/Resources/Resource.designer.cs -+++ b/Andr.Unit/Resources/Resource.designer.cs -@@ -1,3 +1,4 @@ -+#pragma warning disable 1591 - // ------------------------------------------------------------------------------ - // - // This code was generated by a tool. -@@ -8,13 +9,20 @@ - // - // ------------------------------------------------------------------------------ - -+[assembly: Android.Runtime.ResourceDesignerAttribute("Andr.Unit.Resource", IsApplication=true)] -+ - namespace Andr.Unit - { - - -+ [System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "1.0.0.0")] - public partial class Resource - { - -+ public static void UpdateIdValues() -+ { -+ } -+ - public partial class Attribute - { - -@@ -149,3 +157,4 @@ namespace Andr.Unit - } - } - } -+#pragma warning restore 1591 diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/Mono.Reactive.Testing.dll.mdb b/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/Mono.Reactive.Testing.dll.mdb deleted file mode 100755 index 1bf810f963..0000000000 Binary files a/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/Mono.Reactive.Testing.dll.mdb and /dev/null differ diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Core.dll.mdb b/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Core.dll.mdb deleted file mode 100644 index 730fcabb7a..0000000000 Binary files a/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Core.dll.mdb and /dev/null differ diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Debugger.dll.mdb b/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Debugger.dll.mdb deleted file mode 100644 index d1117e7c11..0000000000 Binary files a/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Debugger.dll.mdb and /dev/null differ diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Experimental.dll.mdb b/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Experimental.dll.mdb deleted file mode 100644 index e4aa021702..0000000000 Binary files a/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Experimental.dll.mdb and /dev/null differ diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Interfaces.dll.mdb b/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Interfaces.dll.mdb deleted file mode 100644 index 9fa1098537..0000000000 Binary files a/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Interfaces.dll.mdb and /dev/null differ diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Linq.dll.mdb b/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Linq.dll.mdb deleted file mode 100644 index e3b7b549ad..0000000000 Binary files a/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Linq.dll.mdb and /dev/null differ diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.PlatformServices.dll.mdb b/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.PlatformServices.dll.mdb deleted file mode 100644 index f7cd3f032c..0000000000 Binary files a/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.PlatformServices.dll.mdb and /dev/null differ diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Providers.dll.mdb b/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Providers.dll.mdb deleted file mode 100644 index fa5acfa916..0000000000 Binary files a/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Providers.dll.mdb and /dev/null differ diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Runtime.Remoting.dll.mdb b/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Runtime.Remoting.dll.mdb deleted file mode 100644 index de211c3f9f..0000000000 Binary files a/external/rx/Rx/NET/Source/Rx_Xamarin/android/libs/System.Reactive.Runtime.Remoting.dll.mdb and /dev/null differ diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/Mono.Reactive.Testing/android_Mono.Reactive.Testing.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/Mono.Reactive.Testing/android_Mono.Reactive.Testing.csproj old mode 100755 new mode 100644 index 4177055211..800e248480 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/Mono.Reactive.Testing/android_Mono.Reactive.Testing.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/Mono.Reactive.Testing/android_Mono.Reactive.Testing.csproj @@ -10,7 +10,7 @@ Library System.Reactive Mono.Reactive.Testing - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;SIGNED;NUNIT;MONODROID + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec) True @@ -21,6 +21,7 @@ 4 None False + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec) none @@ -38,35 +39,25 @@ - - {6A005891-A3D6-4398-A729-F645397D573A} - Android.NUnitLite - +{6A005891-A3D6-4398-A729-F645397D573A}Android.NUnitLite + + {4E516F10-DA7A-4D43-963E-A93865ABEA5B} + android_System.Reactive.Core + + {9E9B9C60-98B0-40FA-9C2B-1218D417CAA4} + android_System.Reactive.Interfaces + + {63252AE9-5186-45CA-BFCD-FA51C6B66A43} + android_System.Reactive.Linq + - - {FEF62C23-10CD-4DEF-A5AE-54A8B309E970} - android_System.Reactive.Core - - - {4FA878DC-6E88-43C4-B37B-8C1151CEC56F} - android_System.Reactive.Interfaces - - - {EC704077-EA31-4852-AD24-6732244174C0} - android_System.Reactive.Linq - - ColdObservable.cs @@ -106,6 +97,13 @@ TestScheduler.cs + + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Core/android_System.Reactive.Core.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Core/android_System.Reactive.Core.csproj old mode 100755 new mode 100644 index 9349d4ae23..2a5c851804 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Core/android_System.Reactive.Core.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Core/android_System.Reactive.Core.csproj @@ -10,10 +10,7 @@ Library System.Reactive System.Reactive.Core - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;SIGNED;NUNIT;MONODROID - True - True - ..\..\..\reactive.pub + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec) True @@ -24,6 +21,7 @@ 4 None False + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec) none @@ -41,10 +39,11 @@ - - {4FA878DC-6E88-43C4-B37B-8C1151CEC56F} - android_System.Reactive.Interfaces - + + + {9E9B9C60-98B0-40FA-9C2B-1218D417CAA4} + android_System.Reactive.Interfaces + - - - Strings_Core.resx - GlobalSuppressions.cs @@ -295,6 +286,16 @@ Strings_Core.Generated.cs + + + + Strings_Core.resx + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Debugger/android_System.Reactive.Debugger.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Debugger/android_System.Reactive.Debugger.csproj old mode 100755 new mode 100644 index 5464b5c883..d3361578d6 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Debugger/android_System.Reactive.Debugger.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Debugger/android_System.Reactive.Debugger.csproj @@ -10,10 +10,7 @@ Library System.Reactive System.Reactive.Debugger - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;SIGNED;NUNIT;MONODROID - True - True - ..\..\..\reactive.pub + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec) True @@ -24,6 +21,7 @@ 4 None False + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec) none @@ -41,26 +39,23 @@ - - {FEF62C23-10CD-4DEF-A5AE-54A8B309E970} - android_System.Reactive.Core - - - {00DC3654-E373-4E3F-80FE-109F795ADF1F} - android_System.Reactive.Experimental - - - {4FA878DC-6E88-43C4-B37B-8C1151CEC56F} - android_System.Reactive.Interfaces - - - {EC704077-EA31-4852-AD24-6732244174C0} - android_System.Reactive.Linq - - - {D263C126-9D3C-4299-A0C1-F25C703D07C9} - android_System.Reactive.PlatformServices - + + + {4E516F10-DA7A-4D43-963E-A93865ABEA5B} + android_System.Reactive.Core + + {41E65B96-733B-41C4-A1BB-7476359B89EB} + android_System.Reactive.Experimental + + {9E9B9C60-98B0-40FA-9C2B-1218D417CAA4} + android_System.Reactive.Interfaces + + {63252AE9-5186-45CA-BFCD-FA51C6B66A43} + android_System.Reactive.Linq + + {0CCCF009-763F-40D2-8655-7A94828023BF} + android_System.Reactive.PlatformServices + - Properties\AssemblyInfo.cs Reactive\Linq\QueryDebugger.cs + + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Experimental/android_System.Reactive.Experimental.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Experimental/android_System.Reactive.Experimental.csproj old mode 100755 new mode 100644 index c54d35fab2..6c3099c5c0 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Experimental/android_System.Reactive.Experimental.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Experimental/android_System.Reactive.Experimental.csproj @@ -10,10 +10,7 @@ Library System.Reactive System.Reactive.Experimental - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;SIGNED;NUNIT;MONODROID - True - True - ..\..\..\reactive.pub + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec) True @@ -24,6 +21,7 @@ 4 None False + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec) none @@ -41,18 +39,17 @@ - - {EC704077-EA31-4852-AD24-6732244174C0} - android_System.Reactive.Linq - - - {FEF62C23-10CD-4DEF-A5AE-54A8B309E970} - android_System.Reactive.Core - - - {4FA878DC-6E88-43C4-B37B-8C1151CEC56F} - android_System.Reactive.Interfaces - + + + {63252AE9-5186-45CA-BFCD-FA51C6B66A43} + android_System.Reactive.Linq + + {4E516F10-DA7A-4D43-963E-A93865ABEA5B} + android_System.Reactive.Core + + {9E9B9C60-98B0-40FA-9C2B-1218D417CAA4} + android_System.Reactive.Interfaces + - ExperimentalAttribute.cs @@ -96,6 +88,13 @@ Reactive\ListObservable.cs + + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Interfaces/android_System.Reactive.Interfaces.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Interfaces/android_System.Reactive.Interfaces.csproj index ab0d4ec5a3..88dce4c41e 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Interfaces/android_System.Reactive.Interfaces.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Interfaces/android_System.Reactive.Interfaces.csproj @@ -10,10 +10,7 @@ Library System.Reactive System.Reactive.Interfaces - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;SIGNED;NUNIT;MONODROID - True - True - ..\..\..\reactive.pub + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec) True @@ -24,6 +21,7 @@ 4 None False + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec) none @@ -41,6 +39,8 @@ + + - AssemblyFileVersionAttribute.cs @@ -126,6 +121,13 @@ Reactive\Subjects\ISubject.Multi.cs + + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Linq/android_System.Reactive.Linq.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Linq/android_System.Reactive.Linq.csproj old mode 100755 new mode 100644 index 4b2bbe9a90..afd549176b --- a/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Linq/android_System.Reactive.Linq.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Linq/android_System.Reactive.Linq.csproj @@ -10,10 +10,7 @@ Library System.Reactive System.Reactive.Linq - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;SIGNED;NUNIT;MONODROID - True - True - ..\..\..\reactive.pub + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec) True @@ -24,6 +21,7 @@ 4 None False + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec) none @@ -41,14 +39,14 @@ - - {FEF62C23-10CD-4DEF-A5AE-54A8B309E970} - android_System.Reactive.Core - - - {4FA878DC-6E88-43C4-B37B-8C1151CEC56F} - android_System.Reactive.Interfaces - + + + {4E516F10-DA7A-4D43-963E-A93865ABEA5B} + android_System.Reactive.Core + + {9E9B9C60-98B0-40FA-9C2B-1218D417CAA4} + android_System.Reactive.Interfaces + - - - Strings_Linq.resx - GlobalSuppressions.cs @@ -578,6 +568,16 @@ Strings_Linq.Generated.cs + + + + Strings_Linq.resx + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.PlatformServices/android_System.Reactive.PlatformServices.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.PlatformServices/android_System.Reactive.PlatformServices.csproj old mode 100755 new mode 100644 index bb1286a3e9..d5968cbd48 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.PlatformServices/android_System.Reactive.PlatformServices.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.PlatformServices/android_System.Reactive.PlatformServices.csproj @@ -10,10 +10,7 @@ Library System.Reactive System.Reactive.PlatformServices - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;SIGNED;NUNIT;MONODROID - True - True - ..\..\..\reactive.pub + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec) True @@ -24,6 +21,7 @@ 4 None False + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec) none @@ -41,18 +39,17 @@ - - {FEF62C23-10CD-4DEF-A5AE-54A8B309E970} - android_System.Reactive.Core - - - {4FA878DC-6E88-43C4-B37B-8C1151CEC56F} - android_System.Reactive.Interfaces - - - {EC704077-EA31-4852-AD24-6732244174C0} - android_System.Reactive.Linq - + + + {4E516F10-DA7A-4D43-963E-A93865ABEA5B} + android_System.Reactive.Core + + {9E9B9C60-98B0-40FA-9C2B-1218D417CAA4} + android_System.Reactive.Interfaces + + {63252AE9-5186-45CA-BFCD-FA51C6B66A43} + android_System.Reactive.Linq + - - - Strings_PlatformServices.resx - GlobalSuppressions.cs @@ -126,6 +115,16 @@ Strings_PlatformServices.Generated.cs + + + + Strings_PlatformServices.resx + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Providers/android_System.Reactive.Providers.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Providers/android_System.Reactive.Providers.csproj old mode 100755 new mode 100644 index 78205d1bed..1b04227d63 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Providers/android_System.Reactive.Providers.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Providers/android_System.Reactive.Providers.csproj @@ -10,10 +10,7 @@ Library System.Reactive System.Reactive.Providers - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;SIGNED;NUNIT;MONODROID - True - True - ..\..\..\reactive.pub + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec) True @@ -24,6 +21,7 @@ 4 None False + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec) none @@ -41,18 +39,17 @@ - - {FEF62C23-10CD-4DEF-A5AE-54A8B309E970} - android_System.Reactive.Core - - - {4FA878DC-6E88-43C4-B37B-8C1151CEC56F} - android_System.Reactive.Interfaces - - - {EC704077-EA31-4852-AD24-6732244174C0} - android_System.Reactive.Linq - + + + {4E516F10-DA7A-4D43-963E-A93865ABEA5B} + android_System.Reactive.Core + + {9E9B9C60-98B0-40FA-9C2B-1218D417CAA4} + android_System.Reactive.Interfaces + + {63252AE9-5186-45CA-BFCD-FA51C6B66A43} + android_System.Reactive.Linq + - - - Strings_Providers.resx - GlobalSuppressions.cs @@ -105,6 +94,16 @@ Strings_Providers.Generated.cs + + + + Strings_Providers.resx + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Runtime.Remoting/android_System.Reactive.Runtime.Remoting.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Runtime.Remoting/android_System.Reactive.Runtime.Remoting.csproj old mode 100755 new mode 100644 index 58d292919e..c908963081 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Runtime.Remoting/android_System.Reactive.Runtime.Remoting.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/System.Reactive.Runtime.Remoting/android_System.Reactive.Runtime.Remoting.csproj @@ -10,10 +10,7 @@ Library System.Reactive System.Reactive.Runtime.Remoting - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;SIGNED;NUNIT;MONODROID - True - True - ..\..\..\reactive.pub + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec) True @@ -24,6 +21,7 @@ 4 None False + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec) none @@ -41,14 +39,14 @@ - - {FEF62C23-10CD-4DEF-A5AE-54A8B309E970} - android_System.Reactive.Core - - - {4FA878DC-6E88-43C4-B37B-8C1151CEC56F} - android_System.Reactive.Interfaces - + + + {4E516F10-DA7A-4D43-963E-A93865ABEA5B} + android_System.Reactive.Core + + {9E9B9C60-98B0-40FA-9C2B-1218D417CAA4} + android_System.Reactive.Interfaces + - GlobalSuppressions.cs @@ -74,6 +67,13 @@ Reactive\Linq\QueryLanguage.Remoting.cs + + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/Tests.System.Reactive/android_Tests.System.Reactive.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/Tests.System.Reactive/android_Tests.System.Reactive.csproj old mode 100755 new mode 100644 index 2a6ef7a55d..abdcfdc6cb --- a/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/Tests.System.Reactive/android_Tests.System.Reactive.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/rx/Tests.System.Reactive/android_Tests.System.Reactive.csproj @@ -10,7 +10,7 @@ Library System.Reactive Tests.System.Reactive - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;SIGNED;NUNIT;MONODROID + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec) True @@ -21,6 +21,7 @@ 4 None False + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec) none @@ -38,59 +39,49 @@ - - {6A005891-A3D6-4398-A729-F645397D573A} - Android.NUnitLite - +{6A005891-A3D6-4398-A729-F645397D573A}Android.NUnitLite + + {E7B7408B-B039-4F30-B6CF-CC06218CE4CA} + android_Mono.Reactive.Testing + + {4E516F10-DA7A-4D43-963E-A93865ABEA5B} + android_System.Reactive.Core + + {41E65B96-733B-41C4-A1BB-7476359B89EB} + android_System.Reactive.Experimental + + {9E9B9C60-98B0-40FA-9C2B-1218D417CAA4} + android_System.Reactive.Interfaces + + {9ffac385-10a4-4ddd-b800-de67e8469cc0} + android_System.Reactive.Observable.Aliases + + {0CCCF009-763F-40D2-8655-7A94828023BF} + android_System.Reactive.PlatformServices + + {C7B9D7BE-F47F-466B-A6B0-E46F1069B171} + android_System.Reactive.Providers + + {63252AE9-5186-45CA-BFCD-FA51C6B66A43} + android_System.Reactive.Linq + + {7A6EF49E-7946-4101-9C89-407B9C53A173} + android_System.Reactive.Runtime.Remoting + + {E32328A1-1F5B-45F9-B005-02EF5CC2CF0D} + android_System.Reactive.Windows.Forms + + {2F7D32BD-5BFC-45D4-9899-F1A76DB32FCB} + android_System.Reactive.Windows.Threading + - - {CB2AB716-BFCB-43BC-A03B-A3BDA427746C} - android_Mono.Reactive.Testing - - - {FEF62C23-10CD-4DEF-A5AE-54A8B309E970} - android_System.Reactive.Core - - - {9360E845-D79D-4288-9100-63A80FAD2BF0} - android_System.Reactive.Debugger - - - {4FA878DC-6E88-43C4-B37B-8C1151CEC56F} - android_System.Reactive.Interfaces - - - {EC704077-EA31-4852-AD24-6732244174C0} - android_System.Reactive.Linq - - - {D263C126-9D3C-4299-A0C1-F25C703D07C9} - android_System.Reactive.PlatformServices - - - {00DC3654-E373-4E3F-80FE-109F795ADF1F} - android_System.Reactive.Experimental - - - {E662282B-4341-4F86-AAAA-A942335B47FB} - android_System.Reactive.Providers - - - {A153A379-670C-42C2-9018-FC0D933A4F7F} - android_System.Reactive.Runtime.Remoting - - App.cs @@ -106,6 +97,9 @@ Stress\Core\Disposables\Serial.cs + + Stress\Core\Schedulers\EventLoop.cs + Stress\Core\Disposables\SingleAssignment.cs @@ -130,6 +124,9 @@ TestLongRunningScheduler.cs + + Tests\Aliases.cs + Tests\AnonymousTest.cs @@ -220,6 +217,9 @@ Tests\Linq\ObservableExtensionsTest.cs + + Tests\Linq\ObservableExTest.cs + Tests\Linq\ObservableImperativeTest.cs @@ -340,6 +340,13 @@ Utils.cs + + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/GithubApiClientSample/MainActivity.cs b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/GithubApiClientSample/MainActivity.cs index 224315ddd4..33485df5e3 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/GithubApiClientSample/MainActivity.cs +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/GithubApiClientSample/MainActivity.cs @@ -1,4 +1,4 @@ -#define REACTIVE +#define REACTIVE using System; using System.Collections.Generic; using System.IO; diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/GithubApiClientSample/Properties/AssemblyInfo.cs b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/GithubApiClientSample/Properties/AssemblyInfo.cs index 757ab880aa..064daa16a7 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/GithubApiClientSample/Properties/AssemblyInfo.cs +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/GithubApiClientSample/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; using System.Runtime.CompilerServices; using Android.App; diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/GithubApiClientSample/Resources/Resource.designer.cs b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/GithubApiClientSample/Resources/Resource.designer.cs index 5eed766d55..8466952b8b 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/GithubApiClientSample/Resources/Resource.designer.cs +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/GithubApiClientSample/Resources/Resource.designer.cs @@ -1,4 +1,4 @@ -#pragma warning disable 1591 +#pragma warning disable 1591 // ------------------------------------------------------------------------------ // // This code was generated by a tool. diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample.sln b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample.sln new file mode 100644 index 0000000000..fadcb164d2 --- /dev/null +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample.sln @@ -0,0 +1,20 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReactiveAndroidSample", "ReactiveAndroidSample\ReactiveAndroidSample.csproj", "{0A024D57-A5E0-4648-80E6-C5F525167625}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0A024D57-A5E0-4648-80E6-C5F525167625}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0A024D57-A5E0-4648-80E6-C5F525167625}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0A024D57-A5E0-4648-80E6-C5F525167625}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0A024D57-A5E0-4648-80E6-C5F525167625}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(MonoDevelopProperties) = preSolution + StartupItem = ReactiveAndroidSample\ReactiveAndroidSample.csproj + EndGlobalSection +EndGlobal diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Assets/AboutAssets.txt b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Assets/AboutAssets.txt new file mode 100644 index 0000000000..ee39886295 --- /dev/null +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Assets/AboutAssets.txt @@ -0,0 +1,19 @@ +Any raw assets you want to be deployed with your application can be placed in +this directory (and child directories) and given a Build Action of "AndroidAsset". + +These files will be deployed with you package and will be accessible using Android's +AssetManager, like this: + +public class ReadAsset : Activity +{ + protected override void OnCreate (Bundle bundle) + { + base.OnCreate (bundle); + + InputStream input = Assets.Open ("my_asset.txt"); + } +} + +Additionally, some Android functions will automatically load asset files: + +Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); \ No newline at end of file diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/MainActivity.cs b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/MainActivity.cs new file mode 100644 index 0000000000..268372636a --- /dev/null +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/MainActivity.cs @@ -0,0 +1,47 @@ +using System; +using System.Reactive; +using System.Reactive.Linq; +using Android.App; +using Android.OS; +using Android.Views; +using Android.Widget; + +namespace ReactiveAndroidSample +{ + [Activity (Label = "ReactiveAndroidSample", MainLauncher = true)] + public class Activity1 : Activity + { + protected override void OnCreate (Bundle bundle) + { + base.OnCreate (bundle); + + SetContentView (Resource.Layout.Main); + + var text = FindViewById (Resource.Id.theText); + + var surface = FindViewById (Resource.Id.theToucheable); + + triple_touch_source = Observable.FromEventPattern (surface, "Touch") + .Where (ev => ev.EventArgs.Event.Action == MotionEventActions.Move) + .Where (ev => ev.EventArgs.Event.PointerCount == 3) + //.SubscribeOn (Application.SynchronizationContext) + .ToEventPattern (); + + TripleTouch += (sender, ev) => + this.RunOnUiThread (() => + text.Text = GetEventDescription (ev.Event)); + } + + IEventPatternSource triple_touch_source; + + public event EventHandler TripleTouch { + add { triple_touch_source.OnNext += value; } + remove { triple_touch_source.OnNext -= value; } + } + + static string GetEventDescription (MotionEvent e) + { + return string.Format ("({0}, {1})", e.RawX, e.RawY); + } + } +} diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Properties/AssemblyInfo.cs b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..57340a1600 --- /dev/null +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Properties/AssemblyInfo.cs @@ -0,0 +1,28 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using Android.App; + +// Information about this assembly is defined by the following attributes. +// Change them to the values specific to your project. + +[assembly: AssemblyTitle("ReactiveAndroidSample")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("atsushi")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". +// The form "{Major}.{Minor}.*" will automatically update the build and revision, +// and "{Major}.{Minor}.{Build}.*" will update just the revision. + +[assembly: AssemblyVersion("1.0.0")] + +// The following attributes are used to specify the signing key for the assembly, +// if desired. See the Mono documentation for more information about signing. + +//[assembly: AssemblyDelaySign(false)] +//[assembly: AssemblyKeyFile("")] + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/ReactiveAndroidSample.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/ReactiveAndroidSample.csproj new file mode 100644 index 0000000000..53eec679a0 --- /dev/null +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/ReactiveAndroidSample.csproj @@ -0,0 +1,73 @@ + + + + Debug + AnyCPU + 10.0.0 + 2.0 + {0A024D57-A5E0-4648-80E6-C5F525167625} + {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + Library + ReactiveAndroidSample + True + Resources\Resource.designer.cs + Resource + Resources + Assets + ReactiveAndroidSample + + + true + full + false + bin\Debug + DEBUG; + prompt + 4 + None + false + + + none + true + bin\Release + prompt + 4 + false + SdkOnly + false + + + + + + + + ..\..\..\libs\System.Reactive.Core.dll + + + ..\..\..\libs\System.Reactive.Interfaces.dll + + + ..\..\..\libs\System.Reactive.Linq.dll + + + ..\..\..\libs\System.Reactive.PlatformServices.dll + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Resources/AboutResources.txt b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Resources/AboutResources.txt new file mode 100644 index 0000000000..10f52d4602 --- /dev/null +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Resources/AboutResources.txt @@ -0,0 +1,44 @@ +Images, layout descriptions, binary blobs and string dictionaries can be included +in your application as resource files. Various Android APIs are designed to +operate on the resource IDs instead of dealing with images, strings or binary blobs +directly. + +For example, a sample Android app that contains a user interface layout (main.axml), +an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png) +would keep its resources in the "Resources" directory of the application: + +Resources/ + drawable/ + icon.png + + layout/ + main.axml + + values/ + strings.xml + +In order to get the build system to recognize Android resources, set the build action to +"AndroidResource". The native Android APIs do not operate directly with filenames, but +instead operate on resource IDs. When you compile an Android application that uses resources, +the build system will package the resources for distribution and generate a class called "R" +(this is an Android convention) that contains the tokens for each one of the resources +included. For example, for the above Resources layout, this is what the R class would expose: + +public class R { + public class drawable { + public const int icon = 0x123; + } + + public class layout { + public const int main = 0x456; + } + + public class strings { + public const int first_string = 0xabc; + public const int second_string = 0xbcd; + } +} + +You would then use R.drawable.icon to reference the drawable/icon.png file, or R.layout.main +to reference the layout/main.axml file, or R.strings.first_string to reference the first +string in the dictionary file values/strings.xml. diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Resources/Resource.designer.cs b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Resources/Resource.designer.cs new file mode 100644 index 0000000000..1f475286c2 --- /dev/null +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Resources/Resource.designer.cs @@ -0,0 +1,115 @@ +#pragma warning disable 1591 +// ------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Mono Runtime Version: 4.0.30319.17020 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +// ------------------------------------------------------------------------------ + +[assembly: Android.Runtime.ResourceDesignerAttribute("ReactiveAndroidSample.Resource", IsApplication=true)] + +namespace ReactiveAndroidSample +{ + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "1.0.0.0")] + public partial class Resource + { + + static Resource() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + public static void UpdateIdValues() + { + } + + public partial class Attribute + { + + static Attribute() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Attribute() + { + } + } + + public partial class Drawable + { + + // aapt resource value: 0x7f020000 + public const int Icon = 2130837504; + + static Drawable() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Drawable() + { + } + } + + public partial class Id + { + + // aapt resource value: 0x7f050001 + public const int theText = 2131034113; + + // aapt resource value: 0x7f050000 + public const int theToucheable = 2131034112; + + static Id() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Id() + { + } + } + + public partial class Layout + { + + // aapt resource value: 0x7f030000 + public const int Main = 2130903040; + + static Layout() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Layout() + { + } + } + + public partial class String + { + + // aapt resource value: 0x7f040001 + public const int app_name = 2130968577; + + // aapt resource value: 0x7f040000 + public const int hello = 2130968576; + + static String() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private String() + { + } + } + } +} +#pragma warning restore 1591 diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Resources/drawable/Icon.png b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Resources/drawable/Icon.png new file mode 100644 index 0000000000..a07c69fa5a Binary files /dev/null and b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Resources/drawable/Icon.png differ diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Resources/layout/Main.axml b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Resources/layout/Main.axml new file mode 100644 index 0000000000..84cf9868df --- /dev/null +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Resources/layout/Main.axml @@ -0,0 +1,16 @@ + + + + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Resources/values/Strings.xml b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Resources/values/Strings.xml new file mode 100644 index 0000000000..0174c8518a --- /dev/null +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/android/samples/ReactiveAndroidSample/ReactiveAndroidSample/Resources/values/Strings.xml @@ -0,0 +1,5 @@ + + + Hello World, Click Me! + ReactiveAndroidSample + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/Tests.System.Reactive/AppDelegate.cs b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/Tests.System.Reactive/AppDelegate.cs index 64d549fedb..f262349289 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/Tests.System.Reactive/AppDelegate.cs +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/Tests.System.Reactive/AppDelegate.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/Tests.System.Reactive/Main.cs b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/Tests.System.Reactive/Main.cs index 01eff67060..0401ce5b9c 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/Tests.System.Reactive/Main.cs +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/Tests.System.Reactive/Main.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/ios_UnitTest/Main.cs b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/ios_UnitTest/Main.cs index 677972735a..0e2e29c9c6 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/ios_UnitTest/Main.cs +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/ios_UnitTest/Main.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/ios_UnitTest/UnitTestAppDelegate.cs b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/ios_UnitTest/UnitTestAppDelegate.cs index 7ba7e00b2e..0fa2496a90 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/ios_UnitTest/UnitTestAppDelegate.cs +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/ios_UnitTest/UnitTestAppDelegate.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/Mono.Reactive.Testing/ios_Mono.Reactive.Testing.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/Mono.Reactive.Testing/ios_Mono.Reactive.Testing.csproj index c38caa8290..ccb9faceec 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/Mono.Reactive.Testing/ios_Mono.Reactive.Testing.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/Mono.Reactive.Testing/ios_Mono.Reactive.Testing.csproj @@ -5,7 +5,7 @@ AnyCPU 10.0.0 2.0 - {47d85a91-e8e2-4088-bf5a-68a161754d48} + {47D85A91-E8E2-4088-BF5A-68A161754D48} {6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} Library Properties @@ -13,8 +13,7 @@ Resources Mono.Reactive.Testing true - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED - + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) -delaySign @@ -24,7 +23,7 @@ bin\Debug False 4 - DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) none @@ -53,13 +52,13 @@ - + {4E516F10-DA7A-4D43-963E-A93865ABEA5B} ios_System.Reactive.Core - + {9E9B9C60-98B0-40FA-9C2B-1218D417CAA4} ios_System.Reactive.Interfaces - + {63252AE9-5186-45CA-BFCD-FA51C6B66A43} ios_System.Reactive.Linq @@ -71,52 +70,52 @@ --> - - - + ColdObservable.cs - + GlobalSuppressions.cs - + HotObservable.cs - + ITestObservable.cs - + ITestObserver.cs - + MockObserver.cs - + NamespaceDoc.cs - + Properties/AssemblyInfo.cs - + ReactiveAssert.cs - + ReactiveTest.cs - + Recorded.cs - + Subscription.cs - + TestScheduler.cs + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Core/ios_System.Reactive.Core.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Core/ios_System.Reactive.Core.csproj index 145957cb2b..f17389eef2 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Core/ios_System.Reactive.Core.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Core/ios_System.Reactive.Core.csproj @@ -5,7 +5,7 @@ AnyCPU 10.0.0 2.0 - {a67f34b5-75c1-4319-a93e-93df87e728a4} + {A67F34B5-75C1-4319-A93E-93DF87E728A4} {6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} Library Properties @@ -13,11 +13,7 @@ Resources System.Reactive.Core true - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED - True - True - ../../../reactive.pub - + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) -delaySign @@ -27,7 +23,7 @@ bin\Debug False 4 - DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) none @@ -56,7 +52,7 @@ - + {9E9B9C60-98B0-40FA-9C2B-1218D417CAA4} ios_System.Reactive.Interfaces @@ -68,250 +64,250 @@ --> - - Strings_Core.resx - - - - + GlobalSuppressions.cs - + InternalsVisibleTo.cs - + NamespaceDocs.cs - + Observable.Extensions.cs - + Observer.Extensions.cs - + Properties/AssemblyInfo.cs - + Reactive/AnonymousObservable.cs - + Reactive/AnonymousObserver.cs - + Reactive/AnonymousSafeObserver.cs - + Reactive/Concurrency/AsyncLock.cs - + Reactive/Concurrency/CatchScheduler.cs - + Reactive/Concurrency/ConcurrencyAbstractionLayer.cs - + Reactive/Concurrency/ConcurrencyAbstractionLayer.Default.cs - + Reactive/Concurrency/Scheduler.Wrappers.cs - + Reactive/Concurrency/DisableOptimizationsScheduler.cs - + Reactive/Concurrency/Scheduler.Services.Emulation.cs - + Reactive/Concurrency/LocalScheduler.TimerQueue.cs - + Reactive/Concurrency/Scheduler.Services.cs - + Reactive/Concurrency/CurrentThreadScheduler.cs - + Reactive/Concurrency/ImmediateScheduler.cs - + Reactive/Concurrency/LocalScheduler.cs - + Reactive/Concurrency/ScheduledItem.cs - + Reactive/Concurrency/Scheduler.Async.cs - + Reactive/Concurrency/Scheduler.cs - + Reactive/Concurrency/Scheduler.Recursive.cs - + Reactive/Concurrency/Scheduler.Simple.cs - + Reactive/Concurrency/SchedulerDefaults.cs - + Reactive/Concurrency/SchedulerOperation.cs - + Reactive/Concurrency/SchedulerQueue.cs - + Reactive/Concurrency/SchedulerWrapper.cs - + Reactive/Concurrency/Stopwatch.Default.cs - + Reactive/Concurrency/Synchronization.cs - + Reactive/Concurrency/Synchronization.ObserveOn.cs - + Reactive/Concurrency/Synchronization.Synchronize.cs - + Reactive/Concurrency/SynchronizationContextScheduler.cs - + Reactive/Concurrency/DefaultScheduler.cs - + Reactive/Internal/AsyncLockObserver.cs - + Reactive/Internal/CheckedObserver.cs - + Reactive/Internal/ConcurrentDictionary.cs - + Reactive/Internal/ConcurrentQueue.cs - + Reactive/Internal/Constants.cs - + Reactive/Disposables/AnonymousDisposable.cs - + Reactive/Disposables/BooleanDisposable.cs - + Reactive/Disposables/CancellationDisposable.cs - + Reactive/Disposables/CompositeDisposable.cs - + Reactive/Disposables/ContextDisposable.cs - + Reactive/Disposables/DefaultDisposable.cs - + Reactive/Disposables/Disposable.cs - + Reactive/Disposables/MultipleAssignmentDisposable.cs - + Reactive/Disposables/RefCountDisposable.cs - + Reactive/Disposables/ScheduledDisposable.cs - + Reactive/Disposables/SerialDisposable.cs - + Reactive/Disposables/SingleAssignmentDisposable.cs - + Reactive/Internal/AutoDetachObserver.cs - + Reactive/Internal/ExceptionServices.Default.cs - + Reactive/Internal/ExceptionServices.cs - + Reactive/Internal/HostLifecycleService.cs - + Reactive/Internal/ImmutableList.cs - + Reactive/Internal/Lazy.cs - + Reactive/Internal/Observers.cs - + Reactive/Internal/PlatformEnlightenmentProvider.cs - + Reactive/Internal/PriorityQueue.cs - + Reactive/Internal/Producer.cs - + Reactive/Internal/SafeObserver.cs - + Reactive/Internal/ScheduledObserver.cs - + Reactive/Internal/Semaphore.Silverlight.cs - + Reactive/Internal/Semaphore.Xna.cs - + Reactive/Internal/Sink.cs - + Reactive/Internal/Stubs.cs - + Reactive/Internal/SynchronizationContextExtensions.cs - + Reactive/Internal/SynchronizedObserver.cs - + Reactive/Internal/SystemClock.cs - + Reactive/Internal/SystemClock.Default.cs - + Reactive/Notification.cs - + Reactive/ObservableBase.cs - + Reactive/ObserverBase.cs - + Reactive/Unit.cs - + Strings_Core.Generated.cs + + + Strings_Core.resx + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Debugger/ios_System.Reactive.Debugger.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Debugger/ios_System.Reactive.Debugger.csproj index 2cc9b862e5..c4d8dd9070 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Debugger/ios_System.Reactive.Debugger.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Debugger/ios_System.Reactive.Debugger.csproj @@ -5,7 +5,7 @@ AnyCPU 10.0.0 2.0 - {b41cb61a-dca0-4539-8f99-7b3499e18e6d} + {B41CB61A-DCA0-4539-8F99-7B3499E18E6D} {6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} Library Properties @@ -13,11 +13,7 @@ Resources System.Reactive.Debugger true - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED - True - True - ../../../reactive.pub - + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) -delaySign @@ -27,7 +23,7 @@ bin\Debug False 4 - DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) none @@ -56,19 +52,19 @@ - + {4E516F10-DA7A-4D43-963E-A93865ABEA5B} ios_System.Reactive.Core - + {41E65B96-733B-41C4-A1BB-7476359B89EB} ios_System.Reactive.Experimental - + {9E9B9C60-98B0-40FA-9C2B-1218D417CAA4} ios_System.Reactive.Interfaces - + {63252AE9-5186-45CA-BFCD-FA51C6B66A43} ios_System.Reactive.Linq - + {0CCCF009-763F-40D2-8655-7A94828023BF} ios_System.Reactive.PlatformServices @@ -80,19 +76,19 @@ --> - - - + Properties/AssemblyInfo.cs - + Reactive/Linq/QueryDebugger.cs + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Experimental/ios_System.Reactive.Experimental.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Experimental/ios_System.Reactive.Experimental.csproj index 686350c792..0326fabcc6 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Experimental/ios_System.Reactive.Experimental.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Experimental/ios_System.Reactive.Experimental.csproj @@ -5,7 +5,7 @@ AnyCPU 10.0.0 2.0 - {24f995bd-7075-489c-b7a5-7fde08c304b6} + {24F995BD-7075-489C-B7A5-7FDE08C304B6} {6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} Library Properties @@ -13,11 +13,7 @@ Resources System.Reactive.Experimental true - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED - True - True - ../../../reactive.pub - + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) -delaySign @@ -27,7 +23,7 @@ bin\Debug False 4 - DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) none @@ -56,13 +52,13 @@ - + {63252AE9-5186-45CA-BFCD-FA51C6B66A43} ios_System.Reactive.Linq - + {4E516F10-DA7A-4D43-963E-A93865ABEA5B} ios_System.Reactive.Core - + {9E9B9C60-98B0-40FA-9C2B-1218D417CAA4} ios_System.Reactive.Interfaces @@ -74,43 +70,43 @@ --> - - - + ExperimentalAttribute.cs - + InternalsVisibleTo.cs - + Properties/AssemblyInfo.cs - + Reactive/Internal/BinaryObserver.cs - + Reactive/Linq/QbservableEx.cs - + Reactive/Linq/IQueryLanguageEx.cs - + Reactive/Linq/ObservableEx.cs - + Reactive/Linq/QbservableEx.Generated.cs - + Reactive/Linq/QueryLanguageEx.cs - + Reactive/ListObservable.cs + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Interfaces/ios_System.Reactive.Interfaces.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Interfaces/ios_System.Reactive.Interfaces.csproj index 905db4d87d..87f877d67e 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Interfaces/ios_System.Reactive.Interfaces.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Interfaces/ios_System.Reactive.Interfaces.csproj @@ -5,7 +5,7 @@ AnyCPU 10.0.0 2.0 - {6f2675f5-fcc7-4a28-9dc3-657b4613dcc5} + {6F2675F5-FCC7-4A28-9DC3-657B4613DCC5} {6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} Library Properties @@ -13,11 +13,7 @@ Resources System.Reactive.Interfaces true - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED - True - True - ../../../reactive.pub - + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) -delaySign @@ -27,7 +23,7 @@ bin\Debug False 4 - DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) none @@ -65,85 +61,85 @@ --> - - - + AssemblyFileVersionAttribute.cs - + DateTimeOffset.cs - + GlobalSuppressions.cs - + IObservable.cs - + IObserver.cs - + NamespaceDocs.cs - + Properties/AssemblyInfo.cs - + Reactive/Concurrency/ISchedulerPeriodic.cs - + Reactive/Concurrency/IStopwatchProvider.cs - + Reactive/Concurrency/IScheduledItem.cs - + Reactive/Concurrency/IScheduler.cs - + Reactive/Concurrency/ISchedulerLongRunning.cs - + Reactive/Concurrency/IStopwatch.cs - + Reactive/Disposables/ICancelable.cs - + Reactive/IEventPattern.cs - + Reactive/IEventPatternSource.cs - + Reactive/IEventSource.cs - + Reactive/IObserver.Result.cs - + Reactive/Linq/IGroupedObservable.cs - + Reactive/Linq/IQbservable.cs - + Reactive/Linq/IQbservableProvider.cs - + Reactive/Subjects/IConnectableObservable.cs - + Reactive/Subjects/ISubject.cs - + Reactive/Subjects/ISubject.Multi.cs + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Linq/ios_System.Reactive.Linq.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Linq/ios_System.Reactive.Linq.csproj index 121fc9a67b..1673e4abde 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Linq/ios_System.Reactive.Linq.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Linq/ios_System.Reactive.Linq.csproj @@ -5,7 +5,7 @@ AnyCPU 10.0.0 2.0 - {0a977063-0796-4cd4-84b8-aedb2d648b26} + {0A977063-0796-4CD4-84B8-AEDB2D648B26} {6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} Library Properties @@ -13,11 +13,7 @@ Resources System.Reactive.Linq true - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED - True - True - ../../../reactive.pub - + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) -delaySign @@ -27,7 +23,7 @@ bin\Debug False 4 - DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) none @@ -56,10 +52,10 @@ - + {4E516F10-DA7A-4D43-963E-A93865ABEA5B} ios_System.Reactive.Core - + {9E9B9C60-98B0-40FA-9C2B-1218D417CAA4} ios_System.Reactive.Interfaces @@ -71,529 +67,529 @@ --> - - Strings_Linq.resx - - - - + GlobalSuppressions.cs - + NamespaceDocs.cs - + Reactive/Concurrency/VirtualTimeScheduler.Extensions.cs - + Reactive/Internal/ConcatSink.cs - + Reactive/Internal/Constants.cs - + Reactive/Internal/Helpers.cs - + Reactive/Internal/IConcatenatable.cs - + Reactive/Internal/IEvaluatableObservable.cs - + Reactive/Internal/QueryServices.cs - + Reactive/Internal/ReflectionUtils.cs - + Reactive/Internal/HashSet.cs - + Reactive/Internal/Lookup.cs - + Reactive/Linq/LocalQueryMethodImplementationTypeAttribute.cs - + Reactive/Linq/Observable/Case.cs - + Reactive/Linq/Observable/Collect.cs - + Reactive/Linq/Observable/If.cs - + Reactive/Linq/Observable/For.cs - + Reactive/Linq/Observable/DoWhile.cs - + Reactive/Linq/Observable/While.cs - + Reactive/Linq/Observable/TakeLastBuffer.cs - + Reactive/Linq/Observable/Next.cs - + Reactive/Linq/Observable/MostRecent.cs - + Reactive/Linq/Observable/Latest.cs - + Reactive/Linq/Observable/PushToPullAdapter.cs - + Reactive/Linq/Observable/RefCount.cs - + Reactive/Linq/Observable/Multicast.cs - + Reactive/Linq/Observable/GroupBy.cs - + Reactive/Linq/Observable_.cs - + Reactive/Linq/QueryLanguage_.cs - + Reactive/Linq/QueryLanguage.Joins.cs - + Reactive/Linq/QueryLanguage.Multiple.cs - + Reactive/Linq/QueryLanguage.Single.cs - + Reactive/Linq/QueryLanguage.StandardSequenceOperators.cs - + Reactive/Linq/QueryLanguage.Time.cs - + Reactive/Linq/QueryLanguage.Async.cs - + Reactive/Linq/QueryLanguage.Awaiter.cs - + Reactive/Linq/QueryLanguage.Binding.cs - + Reactive/Linq/QueryLanguage.Blocking.cs - + Reactive/Linq/QueryLanguage.Concurrency.cs - + Reactive/Linq/QueryLanguage.Conversions.cs - + Reactive/Linq/QueryLanguage.Creation.cs - + Reactive/Linq/QueryLanguage.Events.cs - + Reactive/Linq/QueryLanguage.Aggregates.cs - + Reactive/Linq/QueryLanguage.Imperative.cs - + Reactive/Linq/IQueryLanguage.cs - + Reactive/Linq/Observable.Imperative.cs - + Reactive/EventPatternSourceBase.cs - + Reactive/EventPattern.cs - + Reactive/EventPatternSource.cs - + Reactive/EventSource.cs - + InternalsVisibleTo.cs - + Reactive/Linq/Observable.Async.cs - + Reactive/Linq/Observable.Events.cs - + Properties/AssemblyInfo.cs - + Reactive/Concurrency/HistoricalScheduler.cs - + Reactive/Concurrency/VirtualTimeScheduler.cs - + Reactive/Internal/AnonymousEnumerable.cs - + Reactive/Internal/BinaryObserver.cs - + Reactive/Linq/Observable/AddRef.cs - + Reactive/Linq/Observable/Aggregate.cs - + Reactive/Linq/Observable/All.cs - + Reactive/Linq/Observable/Amb.cs - + Reactive/Linq/Observable/Any.cs - + Reactive/Linq/Observable/AsObservable.cs - + Reactive/Linq/Observable/Average.cs - + Reactive/Linq/Observable/Buffer.cs - + Reactive/Linq/Observable/Catch.cs - + Reactive/Linq/Observable/Concat.cs - + Reactive/Linq/Observable/Contains.cs - + Reactive/Linq/Observable/Cast.cs - + Reactive/Linq/Observable/CombineLatest.cs - + Reactive/Linq/Observable/GetEnumerator.cs - + Reactive/Linq/Observable/GroupJoin.cs - + Reactive/Linq/Observable/Join.cs - + Reactive/Linq/Observable/SelectMany.cs - + Reactive/Linq/Observable/Zip.cs - + Reactive/Linq/Observable/OfType.cs - + Reactive/Linq/Observable/Count.cs - + Reactive/Linq/Observable/DefaultIfEmpty.cs - + Reactive/Linq/Observable/Defer.cs - + Reactive/Linq/Observable/Delay.cs - + Reactive/Linq/Observable/DelaySubscription.cs - + Reactive/Linq/Observable/Dematerialize.cs - + Reactive/Linq/Observable/Distinct.cs - + Reactive/Linq/Observable/DistinctUntilChanged.cs - + Reactive/Linq/Observable/Do.cs - + Reactive/Linq/Observable/ElementAt.cs - + Reactive/Linq/Observable/Empty.cs - + Reactive/Linq/Observable/Finally.cs - + Reactive/Linq/Observable/FirstAsync.cs - + Reactive/Linq/Observable/ForEach.cs - + Reactive/Linq/Observable/FromEvent.cs - + Reactive/Linq/Observable/FromEventPattern.cs - + Reactive/Linq/Observable/Generate.cs - + Reactive/Linq/Observable/GroupByUntil.cs - + Reactive/Linq/Observable/IgnoreElements.cs - + Reactive/Linq/Observable/IsEmpty.cs - + Reactive/Linq/Observable/LastAsync.cs - + Reactive/Linq/Observable/LongCount.cs - + Reactive/Linq/Observable/Materialize.cs - + Reactive/Linq/Observable/Max.cs - + Reactive/Linq/Observable/MaxBy.cs - + Reactive/Linq/Observable/Merge.cs - + Reactive/Linq/Observable/Min.cs - + Reactive/Linq/Observable/MinBy.cs - + Reactive/Linq/Observable/Never.cs - + Reactive/Linq/Observable/OnErrorResumeNext.cs - + Reactive/Linq/Observable/Range.cs - + Reactive/Linq/Observable/Repeat.cs - + Reactive/Linq/Observable/Return.cs - + Reactive/Linq/Observable/Sample.cs - + Reactive/Linq/Observable/Scan.cs - + Reactive/Linq/Observable/Select.cs - + Reactive/Linq/Observable/SequenceEqual.cs - + Reactive/Linq/Observable/SingleAsync.cs - + Reactive/Linq/Observable/Skip.cs - + Reactive/Linq/Observable/SkipLast.cs - + Reactive/Linq/Observable/SkipUntil.cs - + Reactive/Linq/Observable/SkipWhile.cs - + Reactive/Linq/Observable/Sum.cs - + Reactive/Linq/Observable/Switch.cs - + Reactive/Internal/TailRecursiveSink.cs - + Reactive/Linq/Observable/Take.cs - + Reactive/Linq/Observable/TakeLast.cs - + Reactive/Linq/Observable/TakeUntil.cs - + Reactive/Linq/Observable/TakeWhile.cs - + Reactive/Linq/Observable/Throttle.cs - + Reactive/Linq/Observable/Throw.cs - + Reactive/Linq/Observable/TimeInterval.cs - + Reactive/Linq/Observable/Timeout.cs - + Reactive/Linq/Observable/Timer.cs - + Reactive/Linq/Observable/Timestamp.cs - + Reactive/Linq/Observable/ToArray.cs - + Reactive/Linq/Observable/ToDictionary.cs - + Reactive/Linq/Observable/ToList.cs - + Reactive/Linq/Observable/ToLookup.cs - + Reactive/Linq/Observable/ToObservable.cs - + Reactive/Linq/Observable/Using.cs - + Reactive/Linq/Observable/Where.cs - + Reactive/Linq/Observable/Window.cs - + Reactive/Linq/Observable/_.cs - + Reactive/Subjects/ConnectableObservable.cs - + Reactive/Subjects/Subject.Extensions.cs - + Reactive/Internal/Either.Generic.cs - + Reactive/Subjects/AsyncSubject.cs - + Reactive/Subjects/BehaviorSubject.cs - + Reactive/Subjects/Subject.cs - + Reactive/Linq/GroupedObservable.cs - + Reactive/Joins/ActivePlan.cs - + Reactive/Joins/JoinObserver.cs - + Reactive/Joins/Pattern.cs - + Reactive/Joins/Plan.cs - + Reactive/Linq/Observable.Aggregates.cs - + Reactive/Linq/Observable.Awaiter.cs - + Reactive/Linq/Observable.Binding.cs - + Reactive/Linq/Observable.Blocking.cs - + Reactive/Linq/Observable.Concurrency.cs - + Reactive/Linq/Observable.Conversions.cs - + Reactive/Linq/Observable.Creation.cs - + Reactive/Linq/Observable.Joins.cs - + Reactive/Linq/Observable.Multiple.cs - + Reactive/Linq/Observable.Single.cs - + Reactive/Linq/Observable.StandardSequenceOperators.cs - + Reactive/Linq/Observable.Time.cs - + Reactive/Internal/PushPullAdapter.cs - + Reactive/Subjects/ReplaySubject.cs - + Reactive/Threading/Tasks/NamespaceDoc.cs - + Reactive/Threading/Tasks/TaskObservableExtensions.cs - + Reactive/TimeInterval.cs - + Reactive/Timestamped.cs - + Strings_Linq.Generated.cs + + + Strings_Linq.resx + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.PlatformServices/ios_System.Reactive.PlatformServices.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.PlatformServices/ios_System.Reactive.PlatformServices.csproj index cbe36198fa..8502a7d282 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.PlatformServices/ios_System.Reactive.PlatformServices.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.PlatformServices/ios_System.Reactive.PlatformServices.csproj @@ -5,7 +5,7 @@ AnyCPU 10.0.0 2.0 - {79a43ceb-1a18-49ea-aac4-b72b9c90bf5a} + {79A43CEB-1A18-49EA-AAC4-B72B9C90BF5A} {6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} Library Properties @@ -13,11 +13,7 @@ Resources System.Reactive.PlatformServices true - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED - True - True - ../../../reactive.pub - + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) -delaySign @@ -27,7 +23,7 @@ bin\Debug False 4 - DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) none @@ -56,13 +52,13 @@ - + {4E516F10-DA7A-4D43-963E-A93865ABEA5B} ios_System.Reactive.Core - + {9E9B9C60-98B0-40FA-9C2B-1218D417CAA4} ios_System.Reactive.Interfaces - + {63252AE9-5186-45CA-BFCD-FA51C6B66A43} ios_System.Reactive.Linq @@ -74,73 +70,73 @@ --> - - Strings_PlatformServices.resx - - - - + GlobalSuppressions.cs - + Properties/AssemblyInfo.cs - + Reactive/Concurrency/ConcurrencyAbstractionLayerImpl.Windows.cs - + Reactive/Concurrency/EventLoopScheduler.cs - + Reactive/Concurrency/NewThreadScheduler.cs - + Reactive/Concurrency/ConcurrencyAbstractionLayerImpl.cs - + Reactive/Concurrency/Thread.Stub.cs - + Reactive/Concurrency/ThreadPoolScheduler.Windows.cs - + Reactive/EnlightenmentProvider.cs - + Reactive/Internal/HostLifecycleNotifications.WindowsPhone.cs - + Reactive/Internal/HostLifecycleNotifications.Windows.cs - + Reactive/Internal/PhoneShellThunks.cs - + Reactive/Internal/StopwatchImpl.cs - + Reactive/Concurrency/TaskPoolScheduler.cs - + Reactive/Concurrency/ThreadPoolScheduler.cs - + Reactive/Internal/ExceptionServicesImpl.cs - + Reactive/Internal/PlatformEnlightenmentProvider.cs - + Reactive/Internal/Stubs.cs - + Strings_PlatformServices.Generated.cs + + + Strings_PlatformServices.resx + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Providers/ios_System.Reactive.Providers.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Providers/ios_System.Reactive.Providers.csproj index 853f896c8e..6cb0652b94 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Providers/ios_System.Reactive.Providers.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Providers/ios_System.Reactive.Providers.csproj @@ -5,7 +5,7 @@ AnyCPU 10.0.0 2.0 - {894021ec-14fb-430a-8572-bea9569ae435} + {894021EC-14FB-430A-8572-BEA9569AE435} {6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} Library Properties @@ -13,11 +13,7 @@ Resources System.Reactive.Providers true - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED - True - True - ../../../reactive.pub - + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) -delaySign @@ -27,7 +23,7 @@ bin\Debug False 4 - DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) none @@ -56,13 +52,13 @@ - + {4E516F10-DA7A-4D43-963E-A93865ABEA5B} ios_System.Reactive.Core - + {9E9B9C60-98B0-40FA-9C2B-1218D417CAA4} ios_System.Reactive.Interfaces - + {63252AE9-5186-45CA-BFCD-FA51C6B66A43} ios_System.Reactive.Linq @@ -74,52 +70,52 @@ --> - - Strings_Providers.resx - - - - + GlobalSuppressions.cs - + Properties/AssemblyInfo.cs - + Reactive/Internal/Constants.cs - + Reactive/Joins/QueryablePattern.cs - + Reactive/Joins/QueryablePlan.cs - + Reactive/Linq/ExpressionVisitor.cs - + Reactive/Linq/Observable.Queryable.cs - + Reactive/Linq/Qbservable.cs - + Reactive/Linq/Qbservable.Generated.cs - + Reactive/Linq/Qbservable.Joins.cs - + Reactive/ObservableQuery.cs - + Strings_Providers.Generated.cs + + + Strings_Providers.resx + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Runtime.Remoting/ios_System.Reactive.Runtime.Remoting.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Runtime.Remoting/ios_System.Reactive.Runtime.Remoting.csproj index 88815c04ff..9007d07309 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Runtime.Remoting/ios_System.Reactive.Runtime.Remoting.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Runtime.Remoting/ios_System.Reactive.Runtime.Remoting.csproj @@ -5,7 +5,7 @@ AnyCPU 10.0.0 2.0 - {92857c8e-0e83-4d02-a831-8af3fed43336} + {92857C8E-0E83-4D02-A831-8AF3FED43336} {6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} Library Properties @@ -13,11 +13,7 @@ Resources System.Reactive.Runtime.Remoting true - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED - True - True - ../../../reactive.pub - + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) -delaySign @@ -27,7 +23,7 @@ bin\Debug False 4 - DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) none @@ -56,10 +52,10 @@ - + {4E516F10-DA7A-4D43-963E-A93865ABEA5B} ios_System.Reactive.Core - + {9E9B9C60-98B0-40FA-9C2B-1218D417CAA4} ios_System.Reactive.Interfaces @@ -71,25 +67,25 @@ --> - - - + GlobalSuppressions.cs - + Properties/AssemblyInfo.cs - + Reactive/Linq/Observable.Remoting.cs - + Reactive/Linq/QueryLanguage.Remoting.cs + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Windows.Forms/ios_System.Reactive.Windows.Forms.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Windows.Forms/ios_System.Reactive.Windows.Forms.csproj index d9c5295a04..50e6fdd850 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Windows.Forms/ios_System.Reactive.Windows.Forms.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Windows.Forms/ios_System.Reactive.Windows.Forms.csproj @@ -5,7 +5,7 @@ AnyCPU 10.0.0 2.0 - {912e14a2-7bdf-4600-8d55-e8c4f33a2063} + {912E14A2-7BDF-4600-8D55-E8C4F33A2063} {6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} Library Properties @@ -13,11 +13,7 @@ Resources System.Reactive.Windows.Forms true - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED - True - True - ../../../reactive.pub - + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) -delaySign @@ -27,7 +23,7 @@ bin\Debug False 4 - DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) none @@ -56,10 +52,10 @@ - + {4E516F10-DA7A-4D43-963E-A93865ABEA5B} ios_System.Reactive.Core - + {9E9B9C60-98B0-40FA-9C2B-1218D417CAA4} ios_System.Reactive.Interfaces @@ -71,25 +67,25 @@ --> - - - + GlobalSuppressions.cs - + Reactive/Linq/ControlObservable.cs - + Reactive/Concurrency/ControlScheduler.cs - + Properties/AssemblyInfo.cs + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Windows.Threading/ios_System.Reactive.Windows.Threading.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Windows.Threading/ios_System.Reactive.Windows.Threading.csproj index 20c789b330..476ecc49da 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Windows.Threading/ios_System.Reactive.Windows.Threading.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/System.Reactive.Windows.Threading/ios_System.Reactive.Windows.Threading.csproj @@ -5,7 +5,7 @@ AnyCPU 10.0.0 2.0 - {0f6c2933-8d0c-41e6-9f77-e8714ab8c4ab} + {0F6C2933-8D0C-41E6-9F77-E8714AB8C4AB} {6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} Library Properties @@ -13,11 +13,7 @@ Resources System.Reactive.Windows.Threading true - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED - True - True - ../../../reactive.pub - + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) -delaySign @@ -27,7 +23,7 @@ bin\Debug False 4 - DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) none @@ -56,10 +52,10 @@ - + {4E516F10-DA7A-4D43-963E-A93865ABEA5B} ios_System.Reactive.Core - + {9E9B9C60-98B0-40FA-9C2B-1218D417CAA4} ios_System.Reactive.Interfaces @@ -71,40 +67,40 @@ --> - - Strings_WindowsThreading.resx - - - - + GlobalSuppressions.cs - + Reactive/Concurrency/CoreDispatcherScheduler.cs - + Reactive/Internal/Constants.cs - + Reactive/Linq/CoreDispatcherObservable.cs - + Reactive/Linq/DispatcherObservable.cs - + Reactive/Concurrency/DispatcherScheduler.cs - + Properties/AssemblyInfo.cs - + Strings_WindowsThreading.Generated.cs + + + Strings_WindowsThreading.resx + + diff --git a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/Tests.System.Reactive/ios_Tests.System.Reactive.csproj b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/Tests.System.Reactive/ios_Tests.System.Reactive.csproj index ad3418c6a9..8af048ea36 100644 --- a/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/Tests.System.Reactive/ios_Tests.System.Reactive.csproj +++ b/external/rx/Rx/NET/Source/Rx_Xamarin/iOS/rx/Tests.System.Reactive/ios_Tests.System.Reactive.csproj @@ -5,7 +5,7 @@ AnyCPU 10.0.0 2.0 - {45377009-1425-47fc-985e-05f98022f9e3} + {45377009-1425-47FC-985E-05F98022F9E3} {6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} Library Properties @@ -13,8 +13,7 @@ Resources Tests.System.Reactive true - NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED - + NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) -delaySign @@ -24,7 +23,7 @@ bin\Debug False 4 - DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED + DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;HAS_AWAIT;NUNIT;$(SignAssemblySpec) none @@ -53,34 +52,37 @@ - + {E7B7408B-B039-4F30-B6CF-CC06218CE4CA} ios_Mono.Reactive.Testing - + {4E516F10-DA7A-4D43-963E-A93865ABEA5B} ios_System.Reactive.Core - + {41E65B96-733B-41C4-A1BB-7476359B89EB} ios_System.Reactive.Experimental - + {9E9B9C60-98B0-40FA-9C2B-1218D417CAA4} ios_System.Reactive.Interfaces - + + {9ffac385-10a4-4ddd-b800-de67e8469cc0} + ios_System.Reactive.Observable.Aliases + {0CCCF009-763F-40D2-8655-7A94828023BF} ios_System.Reactive.PlatformServices - + {C7B9D7BE-F47F-466B-A6B0-E46F1069B171} ios_System.Reactive.Providers - + {63252AE9-5186-45CA-BFCD-FA51C6B66A43} ios_System.Reactive.Linq - + {7A6EF49E-7946-4101-9C89-407B9C53A173} ios_System.Reactive.Runtime.Remoting - + {E32328A1-1F5B-45F9-B005-02EF5CC2CF0D} ios_System.Reactive.Windows.Forms - + {2F7D32BD-5BFC-45D4-9899-F1A76DB32FCB} ios_System.Reactive.Windows.Threading @@ -92,262 +94,271 @@ --> - - - + App.cs - + DispatcherHelpers.cs - + Semaphore.cs - + Stress/Core/Disposables/Composite.cs - + Stress/Core/Disposables/Serial.cs - + + Stress/Core/Schedulers/EventLoop.cs + + Stress/Core/Disposables/SingleAssignment.cs - + Stress/Core/Disposables/RefCount.cs - + Stress/Linq/Delay.cs - + Stress/Linq/FromEvent.cs - + Stress/Helpers.cs - + Stress/Linq/Replay.cs - + TestBase.cs - + TestLongRunningScheduler.cs - + + Tests/Aliases.cs + + Tests/AnonymousTest.cs - + Tests/Concurrency/ConcurrencyTest.cs - + Tests/Concurrency/ScheduledItemTest.cs - + Tests/Concurrency/StopwatchTest.cs - + Tests/Concurrency/SynchronizationTest.cs - + Tests/ConnectableObservable.cs - + Tests/ConnectableObservableTest.cs - + Tests/Concurrency/AsyncLockTest.cs - + Tests/Concurrency/ControlSchedulerTest.cs - + Tests/Concurrency/CurrentThreadSchedulerTest.cs - + Tests/Concurrency/DefaultSchedulerTest.cs - + Tests/Concurrency/EventLoopSchedulerTest.cs - + Tests/Concurrency/HistoricalSchedulerTest.cs - + Tests/Concurrency/ImmediateSchedulerTest.cs - + Tests/Concurrency/NewThreadSchedulerTest.cs - + Tests/Concurrency/SchedulerTest.cs - + Tests/Concurrency/SynchronizationContextSchedulerTest.cs - + Tests/Concurrency/TaskPoolSchedulerTest.cs - + Tests/Concurrency/ThreadPoolSchedulerTest.cs - + Tests/Concurrency/VirtualSchedulerTest.cs - + Tests/Disposables/DisposableTests.cs - + Tests/Linq/ObservableAggregateTest.cs - + Tests/Linq/ObservableAsyncTest.cs - + Tests/Linq/ObservableAwaiterTest.cs - + Tests/Linq/ObservableBindingTest.cs - + Tests/Linq/ObservableBlockingTest.cs - + Tests/Linq/ObservableConversionTests.cs - + Tests/Linq/ObservableCreationTest.cs - + Tests/Linq/ObservableEventsTest.cs - + Tests/Linq/ObservableExtensionsTest.cs - + + Tests/Linq/ObservableExTest.cs + + Tests/Linq/ObservableImperativeTest.cs - + Tests/Linq/ObservableJoinsTest.cs - + Tests/Linq/ObservableMultipleTest.cs - + Tests/Linq/ObservableRemotingTest.cs - + Tests/Linq/ObservableSafetyTest.cs - + Tests/Linq/ObservableSingleTest.cs - + Tests/Linq/ObservableStandardQueryOperatorTest.cs - + Tests/Linq/ObservableTimeTest.cs - + Tests/Linq/QbservableExTest.cs - + Tests/Linq/QbservableTest.cs - + Tests/Linq/Subjects/AsyncSubjectTest.cs - + Tests/Linq/Subjects/BehaviorSubjectTest.cs - + Tests/Linq/Subjects/ReplaySubjectTest.cs - + Tests/Linq/Subjects/SubjectTest.cs - + Tests/MySubject.cs - + Tests/RogueEnumerable.cs - + Tests/SystemClockTest.cs - + Tests/DefaultConcurrencyAbstractionLayerTest.cs - + Tests/EventPatternSourceBaseTest.cs - + Tests/NotificationTest.cs - + Tests/TaskObservableExtensionsTest.cs - + Tests/TimeTests.cs - + Tests/UnitTest.cs - + Dummies/DummyDisposable.cs - + Dummies/DummyEnumerable.cs - + Dummies/DummyFunc.cs - + Dummies/DummyObservable.cs - + Dummies/DummyObserver.cs - + Dummies/DummyScheduler.cs - + Extensions.cs - + MockDisposable.cs - + MockEnumerable.cs - + NullErrorObservable.cs - + Properties/AssemblyInfo.cs - + Tests/ListObservableTest.cs - + Tests/ObserverTest.cs - + Tests/PrivateTypesTest.cs - + Tests/RegressionTest.cs - + TestTaskScheduler.cs - + Utils.cs + + -- cgit v1.2.3