You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project is a .NET 5 source generator which produces `IObservable<T>` for events contained within a object including all base classes.
5
+
# Observable Event Generator
4
6
5
-
# Installation
7
+
This project is a .NET 5 source generator which produces `IObservable<T>` for events contained within a object including all base classes. `ObservableEvents` generator will convert events within an assembly and create observable wrappers for them, it is based on [Pharmacist](https://github.com/reactiveui/Pharmacist) and uses [.NET Source Generator](https://docs.microsoft.com/en-us/dotnet/csharp/roslyn-sdk/source-generators-overview) technology.
6
8
7
9
## NuGet Packages
8
10
@@ -14,33 +16,27 @@ Install the following packages to start using Observable Events.
ObservableEvents generator will convert events within an assembly and create observable wrappers for them.
22
+
## Manual Installation
24
23
25
-
It is based on pharmacist [Pharmacist](https://github.com/reactiveui/Pharmacist) and uses .NET Source Generator technology.
The `PrivateAssets` will prevent the ObservableEvents source generator from being inherited by other projects.
35
34
36
35
## How to use
37
36
38
37
### Instance Based
39
-
It injects a class for instance based events into your source code which will expose a extension method called `Events()`.
40
-
41
-
You need to include the namespace `ReactiveMarbles.ObservableEvents` to access to the extension method.
42
38
43
-
You can then use this to get `IObservable<T>` instances from your events.
39
+
It injects a class for instance based events into your source code which will expose a extension method called `Events()`. You need to include the namespace `ReactiveMarbles.ObservableEvents` to access to the extension method. You can then use this to get `IObservable<T>` instances from your events.
44
40
45
41
```cs
46
42
usingReactiveMarbles.ObservableEvents;
@@ -63,9 +59,8 @@ You must use include a attribute `GenerateStaticEventObservables` on the assembl
0 commit comments