Update pinned SDK version to 10.0.102#13936
Merged
Conversation
Co-authored-by: danegsta <50252651+danegsta@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update global.json to use SDK version 10.0.102
Update pinned SDK version to 10.0.102
Jan 15, 2026
Member
|
/azp run aspire-tests |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Contributor
|
🚀 Dogfood this PR with:
curl -fsSL https://raw.githubusercontent.com/dotnet/aspire/main/eng/scripts/get-aspire-cli-pr.sh | bash -s -- 13936Or
iex "& { $(irm https://raw.githubusercontent.com/dotnet/aspire/main/eng/scripts/get-aspire-cli-pr.ps1) } 13936" |
radical
approved these changes
Jan 15, 2026
Member
|
Once the aspire-tests azdo run completes, I can check whether this works fine there too. There will some unrelated test failures on azdo, so I will ignore those. |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the pinned .NET SDK version from 10.0.101 to 10.0.102 to align with the latest SDK release and prevent conflicts when developers have 10.0.102 installed globally.
Changes:
- Updated
global.jsonSDK version from 10.0.101 to 10.0.102 in both thesdk.versionandtools.dotnetfields
Member
|
/ba-g unrelated failures |
joperezr
approved these changes
Jan 15, 2026
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Description
Updates the pinned .NET SDK version from 10.0.101 to 10.0.102 to align with the latest SDK release. This prevents conflicts when developers have 10.0.102 installed globally but the repository pins to 10.0.101, which specifically affects
dotnet dev-certscommand execution.If the SDK tooling version and the runtime version don't agree on the expected ASP.NET Core development certificate version, you can end up in a state where running dotnet dev-certs https --trust or dotnet dev-certs https --check --trust reports success, but you get runtime errors complaining about not being able to find a valid development certificate.
10.0.101 shipped with version 5 of the dev cert, while 10.0.102 includes version 6 (with support for 127.0.0.1 and ::1 addresses). This means that if global.json has our SDK and tools pinned to 10.0.101, but 10.0.102 is installed globally, running dotnet dev-certs https --trust or dotnet dev-certs https --check --trust from the Aspire repo would result in the certificate check passing as long as a version 5 certificate is present, but when you went to actually run the app host it would be using the latest version of the runtime that shipped with 10.0.102, which would expect to find a version 6 certificate.
While you can work around the issue by running dotnet dev-certs https --trust from a folder without a global.json, updating our versions helps avoid the potential pitfall altogether.
Changes
global.jsonSDK version from 10.0.101 to 10.0.102sdk.versionfieldtools.dotnetfieldChecklist
<remarks />and<code />elements on your triple slash comments?doc-ideatemplatebreaking-changetemplatediagnostictemplateOriginal prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.