-
Notifications
You must be signed in to change notification settings - Fork 1
Ensure .NET 8, 9, and 10 SDKs are available in CI workflow #132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
c6c3767
8c8e0df
0daea59
5f77a2d
23f8836
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "sdk": { | ||
| "version": "9.0.306", | ||
| "version": "10.0.101", | ||
|
||
| "rollForward": "latestMinor", | ||
| "allowPrerelease": false | ||
| } | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The CI workflow is being configured to install .NET 8.0.x, 9.0.x, and 10.0.101 (from global.json), but the project does not target .NET 9 or .NET 10 frameworks. The main library targets net462, net8.0, and netstandard2.0, while the test project only targets net8.0 (and net462 on Windows).
Installing SDK versions 9.0.x and 10.0.x is unnecessary and adds overhead to the CI pipeline. Only .NET 8.0.x SDK should be required to build and test this project. If there's a specific reason why newer SDKs are needed (e.g., for tooling or build features), this should be documented.