Skip to content

Commit b3f1e31

Browse files
authored
Update package references in README (#4252)
<!-- Please be sure to read the [Contribute](https://github.com/reactiveui/reactiveui#contribute) section of the README --> **What kind of change does this PR introduce?** <!-- Bug fix, feature, docs update, ... --> docs **What is the new behavior?** <!-- If this is a feature change --> Replaced ReactiveUI.Fody with ReactiveUI.SourceGenerators, updated Avalonia package reference to ReactiveUI.Avalonia, and added ReactiveUI.Extensions. **What might this PR break?** N/A **Please check if the PR fulfills these requirements** - [ ] Tests for the changes have been added (for bug fixes / features) - [x] Docs have been added / updated (for bug fixes / features) **Other information**:
1 parent 8faaf05 commit b3f1e31

1 file changed

Lines changed: 13 additions & 10 deletions

File tree

README.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,28 +29,29 @@ Install the following packages to start building your own ReactiveUI app. <b>Not
2929
| Platform | ReactiveUI Package | NuGet |
3030
| ----------------- | ----------------------------------- | ---------------------- |
3131
| .NET Standard | [ReactiveUI][CoreDoc] | [![CoreBadge]][Core] |
32-
| | [ReactiveUI.Fody][FodyDoc] | [![FodyBadge]][Fody] |
32+
| Any | [ReactiveUI.SourceGenerators][SGDoc]| [![SGBadge]][SG] |
3333
| Unit Testing | [ReactiveUI.Testing][TestDoc] | [![TestBadge]][Test] |
3434
| WPF | [ReactiveUI.WPF][WpfDoc] | [![WpfBadge]][Wpf] |
3535
| UWP | [ReactiveUI.Uwp][UwpDoc] | [![UwpBadge]][Uwp] |
3636
| WinUI | [ReactiveUI.WinUI][WinUiDoc] | [![WinUiBadge]][WinUi] |
37-
| MAUI | [ReactiveUI.Maui][MauiDoc] | [![MauiBadge]][Maui] |
37+
| MAUI | [ReactiveUI.Maui][MauiDoc] | [![MauiBadge]][Maui] |
3838
| Windows Forms | [ReactiveUI.WinForms][WinDoc] | [![WinBadge]][Win] |
3939
| AndroidX | [ReactiveUI.AndroidX][DroDoc] | [![DroXBadge]][DroX] |
4040
| Tizen | [ReactiveUI][CoreDoc] | [![CoreBadge]][Core] |
4141
| Blazor | [ReactiveUI.Blazor][BlazDoc] | [![BlazBadge]][Blaz] |
4242
| Platform Uno | [ReactiveUI.Uno][UnoDoc] | [![UnoBadge]][Uno] |
4343
| Platform Uno | [ReactiveUI.Uno.WinUI][UnoWinUiDoc] | [![UnoWinUiBadge]][UnoWinUi] |
44-
| Avalonia | [Avalonia.ReactiveUI][AvaDoc] | [![AvaBadge]][Ava] |
44+
| Avalonia | [ReactiveUI.Avalonia][AvaDoc] | [![AvaBadge]][Ava] |
4545
| Any | [ReactiveUI.Validation][ValDocs] | [![ValBadge]][ValCore] |
46+
| Any | [ReactiveUI.Extensions][ExtDocs] | [![ExtBadge]][Ext] |
4647

4748
[Core]: https://www.nuget.org/packages/ReactiveUI/
4849
[CoreBadge]: https://img.shields.io/nuget/v/ReactiveUI.svg
4950
[CoreDoc]: https://reactiveui.net/docs/getting-started/installation/
5051

51-
[Fody]: https://www.nuget.org/packages/ReactiveUI.Fody/
52-
[FodyDoc]: https://reactiveui.net/docs/handbook/view-models/boilerplate-code
53-
[FodyBadge]: https://img.shields.io/nuget/v/ReactiveUI.Fody.svg
52+
[SG]: https://www.nuget.org/packages/ReactiveUI.SourceGenerators/
53+
[SGDoc]: https://reactiveui.net/docs/handbook/view-models/boilerplate-code
54+
[SGBadge]: https://img.shields.io/nuget/v/ReactiveUI.SourceGenerators.svg
5455

5556
[Test]: https://www.nuget.org/packages/ReactiveUI.Testing/
5657
[TestBadge]: https://img.shields.io/nuget/v/ReactiveUI.Testing.svg
@@ -77,8 +78,6 @@ Install the following packages to start building your own ReactiveUI app. <b>Not
7778
[WinBadge]: https://img.shields.io/nuget/v/ReactiveUI.WinForms.svg
7879
[WinDoc]: https://reactiveui.net/docs/getting-started/installation/windows-forms
7980

80-
81-
8281
[DroX]: https://www.nuget.org/packages/ReactiveUI.AndroidX/
8382
[DroXBadge]: https://img.shields.io/nuget/v/ReactiveUI.AndroidX.svg
8483
[DroDoc]: https://reactiveui.net/docs/getting-started/installation/
@@ -94,15 +93,19 @@ Install the following packages to start building your own ReactiveUI app. <b>Not
9493
[BlazBadge]: https://img.shields.io/nuget/v/ReactiveUI.Blazor.svg
9594
[BlazDoc]: https://www.reactiveui.net/docs/getting-started/installation/blazor
9695

97-
[Ava]: https://www.nuget.org/packages/Avalonia.ReactiveUI/
98-
[AvaBadge]: https://img.shields.io/nuget/v/Avalonia.ReactiveUI.svg
96+
[Ava]: https://www.nuget.org/packages/ReactiveUI.Avalonia/
97+
[AvaBadge]: https://img.shields.io/nuget/v/ReactiveUI.Avalonia.svg
9998
[AvaDoc]: https://reactiveui.net/docs/getting-started/installation/avalonia
10099
[EventsDocs]: https://reactiveui.net/docs/handbook/events/
101100

102101
[ValCore]: https://www.nuget.org/packages/ReactiveUI.Validation/
103102
[ValBadge]: https://img.shields.io/nuget/v/ReactiveUI.Validation.svg
104103
[ValDocs]: https://reactiveui.net/docs/handbook/user-input-validation/
105104

105+
[Ext]: https://www.nuget.org/packages/ReactiveUI.Extensions/
106+
[ExtBadge]: https://img.shields.io/nuget/v/ReactiveUI.Extensions.svg
107+
[ExtDocs]: https://reactiveui.net/
108+
106109
## Sponsorship
107110

108111
The core team members, ReactiveUI contributors and contributors in the ecosystem do this open-source work in their free time. If you use ReactiveUI, a serious task, and you'd like us to invest more time on it, please donate. This project increases your income/productivity too. It makes development and applications faster and it reduces the required bandwidth.

0 commit comments

Comments
 (0)