Commit c6915ac
breaking: Add .NET 10 Support and Upgrade to ReactiveUI 22.0 (#834)
* Initial plan
* Complete Directory.Build.props migration and project updates
- Unshallowed git repository
- Installed .NET 10 SDK
- Renamed Directory.build.props to Directory.Build.props (case-sensitive)
- Renamed Directory.build.targets to Directory.Build.targets
- Updated Directory.Build.props with new target framework definitions
- Updated global.json to allow SDK 10.0
- Updated ReactiveUI.Validation.csproj to use $(LibraryTargetFrameworks)
- Updated ReactiveUI.Validation.Tests.csproj to use $(TestTargetFrameworks)
- Added net10.0 API approval test verification file
- Suppressed pre-existing StyleCop warnings in test project
- All builds and tests passing for net8.0, net9.0, and net10.0
Co-authored-by: glennawatson <5834289+glennawatson@users.noreply.github.com>
* Fix StyleCop errors and update NuGet packages
- Removed SA1600, SA1513, SA1028, RCS1037 from NoWarn suppressions
- Added documentation for SetUp and TearDown methods
- Fixed trailing whitespace in PropertyValidationTests.cs
- Added blank lines after closing braces per SA1513
- Updated NuGet packages:
- Nerdbank.GitVersioning: 3.7.115 → 3.8.118
- Roslynator.Analyzers: 4.14.0 → 4.14.1
- System.Collections.Immutable: 9.0.8 → 9.0.9
- Microsoft.NET.Test.Sdk: 17.14.1 → 18.0.0
- Microsoft.Reactive.Testing: 6.0.2 → 6.1.0
- Kept ReactiveUI at 21.0.1 (22.0.1 introduces breaking changes)
- All tests passing
Co-authored-by: glennawatson <5834289+glennawatson@users.noreply.github.com>
* Update AndroidX project to use MauiAndroidTargets variable and remove net8.0-android
- Updated ReactiveUI.Validation.AndroidX.csproj to use $(MauiAndroidTargets) variable
- Removed deprecated net8.0-android target (Microsoft deprecated)
- Now targets net9.0-android and net10.0-android only
- Kept ReactiveUI packages at 21.0.1 (22.0.1 has breaking changes)
- AndroidX project builds successfully
- All tests passing
Co-authored-by: glennawatson <5834289+glennawatson@users.noreply.github.com>
* Update ReactiveUI to 22.0.1 with System.Reactive.Disposables.Fluent namespace
- Upgraded ReactiveUI from 21.0.1 to 22.0.1
- Upgraded ReactiveUI.AndroidX from 21.0.1 to 22.0.1
- Added using System.Reactive.Disposables.Fluent directive to files using DisposeWith
- DisposeWith extension method moved from ReactiveUI to System.Reactive.Disposables.Fluent namespace
- All tests passing (68 tests across net8.0, net9.0, net10.0)
Co-authored-by: glennawatson <5834289+glennawatson@users.noreply.github.com>
* Add .NET 10 Support and Upgrade to ReactiveUI 22.0
Co-authored-by: glennawatson <5834289+glennawatson@users.noreply.github.com>
* Remove NoWarn from test project and fix non-nullable field initializations
- Removed NoWarn line completely from test project csproj
- Fixed all CS8618 errors (non-nullable field must contain non-null value) by adding = null! to 156 fields/properties in Model classes
- Test project now has nullable reference types enabled
- Remaining: CS8602, CS8600, CS8625, CS8604 errors in test methods (114 errors total)
- All Model classes now properly initialize non-nullable members with null!
Co-authored-by: glennawatson <5834289+glennawatson@users.noreply.github.com>
* Remove redundant global.json file
- Removed global.json as it's no longer needed
- SDK version management handled by build environment
- Simplifies repository configuration
Co-authored-by: glennawatson <5834289+glennawatson@users.noreply.github.com>
* Further fixes
* Fixes
* Fix warnings
* Fix api warnings
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: glennawatson <5834289+glennawatson@users.noreply.github.com>1 parent 35ffddb commit c6915ac
File tree
64 files changed
+1128
-485
lines changed- src
- ReactiveUI.Validation.AndroidX
- Extensions
- ReactiveUI.Validation.Tests
- API
- Models
- ReactiveUI.Validation
- Abstractions
- Collections
- Comparators
- Components
- Abstractions
- Contexts
- Extensions
- Formatters
- Abstractions
- Helpers
- States
- ValidationBindings
- Abstractions
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
64 files changed
+1128
-485
lines changedThis file was deleted.
Lines changed: 27 additions & 7 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
4 | 8 | | |
5 | 9 | | |
6 | 10 | | |
7 | 11 | | |
8 | | - | |
| 12 | + | |
9 | 13 | | |
10 | 14 | | |
11 | 15 | | |
| |||
24 | 28 | | |
25 | 29 | | |
26 | 30 | | |
27 | | - | |
28 | 31 | | |
29 | 32 | | |
30 | | - | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
31 | 43 | | |
32 | 44 | | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
33 | 53 | | |
34 | 54 | | |
35 | 55 | | |
| |||
40 | 60 | | |
41 | 61 | | |
42 | 62 | | |
43 | | - | |
| 63 | + | |
44 | 64 | | |
45 | | - | |
| 65 | + | |
46 | 66 | | |
47 | 67 | | |
48 | 68 | | |
| |||
File renamed without changes.
Lines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
2 | | - | |
3 | | - | |
| 1 | + | |
| 2 | + | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
Lines changed: 3 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
4 | | - | |
| 4 | + | |
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
| 12 | + | |
| 13 | + | |
13 | 14 | | |
14 | 15 | | |
15 | 16 | | |
| |||
0 commit comments