-
Notifications
You must be signed in to change notification settings - Fork 62
Update the versions used to be .NET 9 and 10 #1169
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
Merged
Merged
Conversation
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
f5cdf69
to
47d863f
Compare
47d863f
to
db9cfcf
Compare
db9cfcf
to
9635757
Compare
/azp run |
Azure Pipelines could not run because the pipeline triggers exclude this branch/path. |
This reverts commit 2baffee.
* Removed hardcoded numbers * using .NET tool manifests
b03e68a
to
ceb885c
Compare
Co-authored-by: Jonathan Peppers <jonathan.peppers@microsoft.com>
Co-authored-by: Jonathan Peppers <jonathan.peppers@microsoft.com>
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.
This reverts commit 60567b3.
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.
This pull request includes updates to support newer versions of .NET and Android, removes outdated scripts and configurations, and simplifies the build pipeline. The most important changes focus on upgrading target frameworks, cleaning up legacy code, and improving build configurations.
Updates to support newer versions of .NET and Android:
.config/dotnet-tools.json
: Added tools forcake.tool
,dotnet-test-slicer
, andapi-tools
with specified versions and commands.Directory.Build.props
: Updated default target frameworks tonet9.0-android
and added configurations fornet10.0-android
. [1] [2]BUILDING.md
: Changed the required .NET SDK version from 8.0 to 9.0..github/copilot-instructions.md
: Updated references tonet9.0-android
and adjusted API levels in documentation. [1] [2]Cleanup of legacy scripts and configurations:
build.cake
: Removed unused targets and variables related todotnet-next
andnet10
migrations. [1] [2]build/cake/dotnet-next.cake
: Deleted the script for testing preview versions of .NET.build/cake/nuget-install.cake
: Removed the script for downloading and managing NuGet packages.Simplifications in the build pipeline:
azure-pipelines-public.yml
: Removed theRunDotnetNextTest
parameter and its associated logic. [1] [2] [3] [4]azure-pipelines.yml
: Deleted theRunDotnetNextTest
parameter and its usage across multiple stages. [1] [2] [3] [4]These changes collectively streamline the codebase, align the project with newer technologies, and remove outdated dependencies and configurations.