Upgrade to .NET 10 SDK and update libraries#511
Merged
Conversation
- Add Directory.Packages.props to centrally manage NuGet package versions - Remove Version attributes from all PackageReference elements across projects - Update Microsoft.SourceLink.GitHub from 1.1.1 to 8.0.0 - Enable ManagePackageVersionsCentrally property - Consolidate package version management for Core, Platform (WPF/Blazor), and Test projects This change improves maintainability by managing all package versions in a single location. パッケージバージョンの中央管理を導入 すべてのプロジェクトファイルから`<PackageReference>`の`Version`属性を削除し、`Directory.Packages.props`ファイルを追加してパッケージバージョンを一元管理しました。これにより、`ManagePackageVersionsCentrally`プロパティが有効になり、依存関係のバージョン管理が簡素化されました。また、`Microsoft.SourceLink.GitHub`のバージョン指定も削除されました。
There was a problem hiding this comment.
Pull Request Overview
This PR upgrades the project to use Central Package Management (CPM) by introducing a Directory.Packages.props file, which centralizes all NuGet package version definitions. The key changes include removing version specifications from individual project files and consolidating them in the new central location, along with updating several package versions.
Key changes:
- Introduced
Directory.Packages.propswith centralized package version management - Removed version attributes from all
<PackageReference>elements across project files - Updated several package versions (e.g., Microsoft.NET.Test.Sdk to 18.0.0, System.Reactive to 6.1.0)
Reviewed Changes
Copilot reviewed 9 out of 9 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| Directory.Packages.props | New file defining all package versions centrally with CPM enabled |
| Source/Directory.Build.props | Removed version from Microsoft.SourceLink.GitHub reference |
| Source/ReactiveProperty.Core/ReactiveProperty.Core.csproj | Removed version from System.ComponentModel.Annotations and obsolete SourceLink update |
| Source/ReactiveProperty.NETStandard/ReactiveProperty.NETStandard.csproj | Removed versions from package references and obsolete SourceLink update |
| Source/ReactiveProperty.Platform.Blazor/ReactiveProperty.Platform.Blazor.csproj | Removed version from AspNetCore.Components.Web and obsolete SourceLink update |
| Source/ReactiveProperty.Platform.WPF/ReactiveProperty.Platform.WPF.csproj | Removed version from Xaml.Behaviors.Wpf and obsolete SourceLink update |
| Test/ReactiveProperty.Blazor.Tests/ReactiveProperty.Blazor.Tests.csproj | Removed versions from all test-related package references |
| Test/ReactiveProperty.NETStandard.Tests/ReactiveProperty.NETStandard.Tests.csproj | Removed versions from all test-related package references |
| Test/ReactiveProperty.WPF.Tests/ReactiveProperty.WPF.Tests.csproj | Removed versions from all test-related package references |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
プロジェクト全体のターゲットフレームワークを`net10.0`に更新。 依存関係のバージョン指定を簡素化し、条件付きバージョンを追加。 新しいパッケージ(`MahApps.Metro`、`Prism.Unity`、`Prism.Wpf`)を導入。 ソリューションファイル形式を`.slnx`に移行し、フォルダ構造を整理。 名前空間変更(`Prism.Regions`→`Prism.Navigation.Regions`)を適用。
…tallation and testing
This was referenced Nov 17, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
#510