Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the repo’s build/test/CI configuration to use .NET 10, including updating the test project framework/packages and adjusting GitHub workflows and composite actions accordingly.
Changes:
- Upgrade
PolylineAlgorithm.Teststonet10.0and refresh testing-related package references and MSBuild test settings. - Add
net10.0to the benchmarks multi-targeting list. - Update GitHub workflows and composite actions to default to
dotnet-sdk-version: 10.xand adjust testing platform usage.
Reviewed changes
Copilot reviewed 17 out of 17 changed files in this pull request and generated 20 comments.
Show a summary per file
| File | Description |
|---|---|
| tests/PolylineAlgorithm.Tests/PolylineAlgorithm.Tests.csproj | Move tests to net10.0, add MS Testing Platform properties, update test packages. |
| benchmarks/PolylineAlgorithm.Benchmarks/PolylineAlgorithm.Benchmarks.csproj | Add net10.0 to benchmark target frameworks. |
| .github/workflows/release.yml | Switch workflow default SDK to 10.x (and file encoding changed). |
| .github/workflows/pull-request.yml | Switch workflow default SDK to 10.x and update installed SDK list (and file encoding changed). |
| .github/workflows/promote-branch.yml | Switch workflow default SDK to 10.x (and file encoding changed). |
| .github/workflows/build.yml | Switch workflow default SDK to 10.x (and file encoding changed). |
| .github/actions/versioning/format-version/action.yml | Update default SDK input to 10.x (and file encoding changed). |
| .github/actions/versioning/extract-version/action.yml | Update default SDK input to 10.x (and file encoding changed). |
| .github/actions/testing/test/action.yml | Update default SDK input to 10.x, add testing-platform env, bump action versions (and file encoding changed). |
| .github/actions/testing/test-report/action.yml | Update default SDK input to 10.x (and file encoding changed). |
| .github/actions/testing/code-coverage/action.yml | Update default SDK input to 10.x (and file encoding changed). |
| .github/actions/source/format/action.yml | Update default SDK input to 10.x (and file encoding changed). |
| .github/actions/source/compile/action.yml | Update default SDK input to 10.x (and file encoding changed). |
| .github/actions/nuget/publish-package/action.yml | Update default SDK input to 10.x (and file encoding changed). |
| .github/actions/git/push-changes/action.yml | Update default SDK input to 10.x (and file encoding changed). |
| .github/actions/documentation/docfx-metadata/action.yml | Update default SDK input to 10.x (and file encoding changed). |
| .github/actions/documentation/docfx-build/action.yml | Update default SDK input to 10.x (and file encoding changed). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| <PropertyGroup> | ||
| <OutputType>Exe</OutputType> | ||
| <TargetFrameworks>net8.0;net9.0</TargetFrameworks> | ||
| <TargetFrameworks>net8.0;net9.0;net10.0;</TargetFrameworks> |
Comment on lines
20
to
22
| project-path: | ||
| description: 'Search pattern for test projects.' | ||
| required: true |
| steps: | ||
| - name: 'Checkout ${{ github.head_ref || github.ref }}' | ||
| uses: actions/checkout@v5 | ||
| uses: actions/checkout@v6 |
| @@ -1,4 +1,4 @@ | |||
| name: 'Release' | |||
| name: 'Release' | |||
| @@ -1,4 +1,4 @@ | |||
| name: 'Pull Request' | |||
| name: 'Pull Request' | |||
| @@ -1,4 +1,4 @@ | |||
| name: 'Publish packages to NuGet feed' | |||
| name: 'Publish packages to NuGet feed' | |||
| @@ -1,4 +1,4 @@ | |||
| name: 'Format version' | |||
| name: 'Format version' | |||
| @@ -1,4 +1,4 @@ | |||
| name: 'Extract version' | |||
| name: 'Extract version' | |||
| @@ -1,18 +1,22 @@ | |||
| name: 'Test with .NET CLI' | |||
| name: 'Test with .NET CLI' | |||
| @@ -1,4 +1,4 @@ | |||
| name: 'Generate docs with docfx' | |||
| name: 'Generate docs with docfx' | |||
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.
No description provided.