A Web Assembly versions of the System.Reactive classes.
Перейти к файлу
David 79480d40a6
Merge pull request #1 from unoplatform/dev/dr/WasmCheck
Fix invalid exception filter resulting to a crash at startup
2019-09-16 16:56:17 -04:00
src Fix invalid exception filter resulting to a crash at startup 2019-09-16 16:55:10 -04:00
.editorconfig Initial commit: added files (#1) 2019-06-16 16:29:13 +10:00
.gitattributes Initial commit: added files (#1) 2019-06-16 16:29:13 +10:00
.gitignore Initial commit: added files (#1) 2019-06-16 16:29:13 +10:00
LICENSE Initial commit: added files (#1) 2019-06-16 16:29:13 +10:00
README.md housekeeping: Added short README (#3) 2019-06-18 19:46:56 +10:00
azure-pipelines.yml Initial commit: added files (#1) 2019-06-16 16:29:13 +10:00
build.cake housekeeping: Rename from System.Reactive.Wasm to Reactive.Wasm (#2) 2019-06-16 19:37:24 +10:00
build.cmd Initial commit: added files (#1) 2019-06-16 16:29:13 +10:00
build.config Initial commit: added files (#1) 2019-06-16 16:29:13 +10:00
build.ps1 Initial commit: added files (#1) 2019-06-16 16:29:13 +10:00
build.sh Initial commit: added files (#1) 2019-06-16 16:29:13 +10:00
cake.config Initial commit: added files (#1) 2019-06-16 16:29:13 +10:00
version.json housekeeping: Rename from System.Reactive.Wasm to Reactive.Wasm (#2) 2019-06-16 19:37:24 +10:00

README.md

Enables Rx extensions in web-assembly projects. Based on Uno.Rx.NET.

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, call the following (uncomment in multi-platform apps and change directive if necessary):

//#if __WASM__
      PlatformEnlightenmentProvider.Current.EnableWasm();
//#endif