Where to find Reactive Extensions 2.2.5
The latest and greatest Reactive Extensions v3 has been released.
With it came a name change to the NuGet packages:
With it came a name change to the NuGet packages:
is nowRx-Main
System.Reactive
is nowRx-Core
System.Reactive.Core
is nowRx-Interfaces
System.Reactive.Interfaces
is nowRx-Linq
System.Reactive.Linq
is nowRx-PlatformServices
System.Reactive.PlatformServices
is nowRx-Testing
Microsoft.Reactive.Testing
And the old packages have been unlisted.
If you have a need to install the older packages, as I have, then all you need to do is specify the version command line parameter when using Install-Package, which seems to be your only option.
If you have a need to install the older packages, as I have, then all you need to do is specify the version command line parameter when using Install-Package, which seems to be your only option.
Install-Package Rx-Main -Version 2.2.5
Comments