Skip to content

Commit aab0f68

Browse files
authored
housekeeping: Add logo.png (#73)
* housekeeping: Add logo.png * Height isn't equal to width now * Enhance readme structure * Tiny fixes * Whitespace
1 parent 25996db commit aab0f68

File tree

3 files changed

+17
-20
lines changed

3 files changed

+17
-20
lines changed

README.md

+15-20
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
# Observable event generator
1+
<a href="https://github.com/reactivemarbles/observableevents">
2+
<img width="150" src="./images/logo.png"/>
3+
</a>
24

3-
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
46

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.
68

79
## NuGet Packages
810

@@ -14,33 +16,27 @@ Install the following packages to start using Observable Events.
1416
| ----------------------------- | ----------------- | -------------------------------- |
1517
| [ReactiveMarbles.ObservableEvents.SourceGenerator][Core] | Core - Libary | [![CoreBadge]][Core] |
1618

17-
1819
[Core]: https://www.nuget.org/packages/ReactiveMarbles.ObservableEvents.SourceGenerator/
1920
[CoreBadge]: https://img.shields.io/nuget/v/ReactiveMarbles.ObservableEvents.SourceGenerator.svg
2021

21-
## What does it do?
22-
23-
ObservableEvents generator will convert events within an assembly and create observable wrappers for them.
22+
## Manual Installation
2423

25-
It is based on pharmacist [Pharmacist](https://github.com/reactiveui/Pharmacist) and uses .NET Source Generator technology.
26-
27-
## Installation
2824
Include the following in your .csproj file
2925

3026
```xml
31-
<PackageReference Include="ReactiveMarbles.ObservableEvents.SourceGenerator" Version="1.0.2" PrivateAssets="all" />
27+
<PackageReference
28+
Include="ReactiveMarbles.ObservableEvents.SourceGenerator"
29+
Version="1.0.2"
30+
PrivateAssets="all" />
3231
```
3332

3433
The `PrivateAssets` will prevent the ObservableEvents source generator from being inherited by other projects.
3534

3635
## How to use
3736

3837
### 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.
4238

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.
4440

4541
```cs
4642
using ReactiveMarbles.ObservableEvents;
@@ -63,9 +59,8 @@ You must use include a attribute `GenerateStaticEventObservables` on the assembl
6359

6460
```cs
6561
[assembly: GenerateStaticEventObservablesAttribute(typeof(StaticTest))]
66-
67-
public static class StaticTest
68-
{
69-
public static event EventHandler? TestChanged;
70-
}
62+
public static class StaticTest
63+
{
64+
public static event EventHandler? TestChanged;
65+
}
7166
```

images/logo.png

27.7 KB
Loading

src/Directory.Build.props

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1111
<PackageProjectUrl>https://github.com/reactivemarbles/ObservableEvents</PackageProjectUrl>
1212
<PackageDescription>Allows to get an observables for property changed events.</PackageDescription>
13+
<PackageIcon>logo.png</PackageIcon>
1314
<Owners>glennawatson</Owners>
1415
<PackageTags>system.reactive;propertychanged;inpc;reactive;functional</PackageTags>
1516
<PackageReleaseNotes>https://github.com/reactivemarbles/ObservableEvents/releases</PackageReleaseNotes>
@@ -34,6 +35,7 @@
3435

3536
<ItemGroup>
3637
<None Include="$(MSBuildThisFileDirectory)..\LICENSE" Pack="true" PackagePath="LICENSE" />
38+
<None Include="$(MSBuildThisFileDirectory)..\images\logo.png" Pack="true" PackagePath="\"/>
3739
</ItemGroup>
3840

3941
<ItemGroup>

0 commit comments

Comments
 (0)