Conversation
There was a problem hiding this comment.
Pull request overview
This PR performs a comprehensive upgrade from .NET 8 to .NET 10, including SDK, project target frameworks, package dependencies, and a migration from the traditional .sln format to the newer .slnx XML-based solution format.
Key Changes:
- Updated all projects from
net8.0tonet10.0target framework - Upgraded SDK version from
8.0.101to10.0.100in global.json - Migrated solution file from
Hexagrams.Nuke.slntoHexagrams.Nuke.slnxformat - Updated all package dependencies to versions compatible with .NET 10
- Simplified GitVersion configuration to use the workflow-based approach (
GitHubFlow/v1)
Reviewed changes
Copilot reviewed 20 out of 20 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| global.json | Updated SDK version to 10.0.100 for .NET 10 support |
| .nuke/parameters.json | Updated solution reference from .sln to .slnx format |
| .config/dotnet-tools.json | Updated tool versions: nuke.globaltool (10.0.0), docfx (2.78.4), gitversion.tool (6.5.0) |
| build/_build.csproj | Updated to net10.0 and Nuke.Common 10.0.0 |
| build/_build.csproj.DotSettings | Added ReSharper naming rule migrations |
| src/Components/Hexagrams.Nuke.Components.csproj | Updated to net10.0 and Nuke.Common 10.0.0 |
| tests/Components/Hexagrams.Nuke.Components.Tests.csproj | Updated to net10.0 and test-related packages |
| samples/1-basic/build/_build.csproj | Updated to net10.0 and Nuke.Common 10.0.0 |
| samples/1-basic/build/_build.csproj.DotSettings | Added ReSharper naming rule migrations |
| samples/1-basic/src/App/Hexagrams.Nuke.Samples.Basic.App.csproj | Updated to net10.0 |
| samples/2-format/build/_build.csproj | Updated to net10.0 and Nuke.Common 10.0.0 |
| samples/2-format/build/_build.csproj.DotSettings | Added ReSharper naming rule migrations |
| samples/2-format/src/App/Hexagrams.Nuke.Samples.Format.App.csproj | Updated to net10.0 |
| samples/3-test/build/_build.csproj | Updated to net10.0 and Nuke.Common 10.0.0 |
| samples/3-test/build/_build.csproj.DotSettings | Added ReSharper naming rule migrations |
| samples/3-test/src/Library/Hexagrams.Nuke.Samples.Test.Library.csproj | Updated to net10.0 |
| samples/3-test/tests/Library/Hexagrams.Nuke.Samples.Test.Library.Tests/Hexagrams.Nuke.Samples.Test.Library.Tests.csproj | Updated to net10.0 and test-related packages |
| GitVersion.yml | Simplified to workflow-based configuration (GitHubFlow/v1) |
| Hexagrams.Nuke.slnx | New XML-based solution file format |
| Hexagrams.Nuke.sln | Removed legacy solution file |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Upgrade SDK, all projects, and all packages to latest .NET 10 versions. Migrate to .slnx format.