feat!: update target frameworks to net8.0 and net10.0, drop net5.0#1111
Open
gavinbarron wants to merge 3 commits intomainfrom
Open
feat!: update target frameworks to net8.0 and net10.0, drop net5.0#1111gavinbarron wants to merge 3 commits intomainfrom
gavinbarron wants to merge 3 commits intomainfrom
Conversation
BREAKING CHANGE: Dropped net5.0 target framework. The SDK now targets netstandard2.0, netstandard2.1, net8.0, and net10.0. - Update TFMs in Microsoft.Graph.Beta.csproj - Update test project to target net8.0 and net10.0 - Add .NET 10 SDK to CI/CD pipelines - Simplify per-TFM build steps in pipelines Closes #1110 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Building all TFMs in parallel via solution build causes exit code 137 (OOM kill) on GitHub Actions ubuntu-latest runners. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- Update ADO ci-build.yml to build each TFM sequentially (same OOM fix as GitHub Actions workflow) - Add comments explaining why per-TFM builds are necessary - Suppress NU1510 package pruning warning for System.Net.Http on netstandard2.0 (false positive from .NET 10 SDK) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
c6adeca to
a8e6f94
Compare
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.
Summary
Update the SDK target frameworks from
netstandard2.0;netstandard2.1;net5.0tonetstandard2.0;netstandard2.1;net8.0;net10.0.Breaking Change
Dropped
net5.0target framework (EOL). Addednet8.0andnet10.0.Changes
Microsoft.Graph.Beta.csprojnet8.0andnet10.0Closes #1110