Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 617 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 617 Bytes

Enables Rx extensions in web-assembly projects. Original implementation based on the Uno.Rx.NET repo.

A reference to the Reactive.Wasm NuGet package should be added, and then it must be manually enabled, preferably in the entry point of your app (i.e. at the beginning of the Main method in your WASM project), call the following:

#pragma warning disable CS0618 // Type or member is obsolete
      PlatformEnlightenmentProvider.Current.EnableWasm();
#pragma warning restore CS0618 // Type or member is obsolete