summaryrefslogtreecommitdiff
path: root/external/rx/Rx/NET/Source/System.Reactive.Interfaces/IObservable.cs
diff options
context:
space:
mode:
Diffstat (limited to 'external/rx/Rx/NET/Source/System.Reactive.Interfaces/IObservable.cs')
-rw-r--r--external/rx/Rx/NET/Source/System.Reactive.Interfaces/IObservable.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/external/rx/Rx/NET/Source/System.Reactive.Interfaces/IObservable.cs b/external/rx/Rx/NET/Source/System.Reactive.Interfaces/IObservable.cs
index f1b62d278c..ae67bc792e 100644
--- a/external/rx/Rx/NET/Source/System.Reactive.Interfaces/IObservable.cs
+++ b/external/rx/Rx/NET/Source/System.Reactive.Interfaces/IObservable.cs
@@ -18,4 +18,7 @@ namespace System
IDisposable Subscribe(IObserver<T> observer);
}
}
-#endif \ No newline at end of file
+#elif !WINDOWSPHONE7 // TypeForwardedTo is not presen on windows phone 7 so we can't really target
+[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.IObservable<>))]
+#endif
+