A Web Assembly versions of the System.Reactive classes.
Перейти к файлу
renovate[bot] c88872edd7
chore(deps): update dependency xunit.runner.visualstudio to 2.8.2
2024-09-24 23:16:06 +00:00
.github
src chore(deps): update dependency xunit.runner.visualstudio to 2.8.2 2024-09-24 23:16:06 +00:00
.editorconfig
.gitattributes
.gitignore
LICENSE
README.md
version.json

README.md

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