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
docs: correct minimum requirements — VS 2022 17.14 (Roslyn 4.14) and ReactiveUI 23.2.28+
The 17.8.0 / ReactiveUI 19.5.31 minimums were stale: 3.0.0 drops the
Roslyn 4.8/4.12 bands, so VS 2022 17.14 is the floor; bump the documented
ReactiveUI minimum to the current release (23.2.28). Drop the obsolete
'older than 19.5.31' compatibility note.
Copy file name to clipboardExpand all lines: README.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@ This documentation covers using ReactiveUI Source Generators to simplify and enh
4
4
5
5
-**Minimum Requirements**:
6
6
-**C# Version**: 12.0
7
-
-**Visual Studio Version**: 17.8.0
8
-
-**ReactiveUI Version**: 19.5.31+
7
+
-**Visual Studio Version**: 17.14.0 (Roslyn 4.14) — or Visual Studio 2026 (Roslyn 5.0)
8
+
-**ReactiveUI Version**: 23.2.28+
9
9
10
10
## Table of Contents
11
11
-[Installation](#installation)
@@ -29,7 +29,7 @@ Ensure the package is loaded with `PrivateAssets="all"` to avoid issues with gen
29
29
30
30
## Overview
31
31
32
-
ReactiveUI Source Generators automatically generate ReactiveUI objects to streamline your code. These Source Generators are designed to work with ReactiveUI V19.5.31+ and support the following features:
32
+
ReactiveUI Source Generators automatically generate ReactiveUI objects to streamline your code. These Source Generators are designed to work with ReactiveUI V23.2.28+ and support the following features:
33
33
34
34
-`[Reactive]` With field and access modifiers, partial property support (C# 13 Visual Studio Version 17.12.0), partial properties with initializer support (C# 14+/preview only)
35
35
-`[Reactive(SetModifier = AccessModifier.Protected)]` With field and access modifiers, (Not Required for partial properties, configure set accessor with the property declaration).
- For ReactiveUI versions **older than V19.5.31**, all `[ReactiveCommand]` options are supported except for async methods with a `CancellationToken`.
73
72
- For **.NET Framework 4.8 and older**, add [Polyfill by Simon Cropp](https://github.com/SimonCropp/Polyfill) or [PolySharp by Sergio Pedri](https://github.com/Sergio0694/PolySharp) to your project and set the `LangVersion` to 12.0 or later in your project file.
0 commit comments