I have the following situation:
- My library makes use of the IObservable interface, inluded in .NET4
- In SL5 it makes sense to reference Rx.Main, since it contains definitions of IObservable / IObserver with the extension methods working on exact those interfaces, which is the whole point.
Is it possible to specify in your Nuget package that only the SL5 version of the package has a dependency on RxMain?
My Nuget / net40 -> No dependencies / sl5 -> Rx.Main
It almost looks like it isn't, but then, what should I do in this situation?