[release/8.0] Enable hotfix branding#120453
Merged
steveisok merged 3 commits intodotnet:release/8.0from Dec 4, 2025
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR enables hotfix branding for .NET 8.0 servicing builds by introducing a more flexible build property system. The change allows non-stabilized hotfix servicing builds to be produced alongside traditional servicing builds.
Key changes:
- Introduces
IsServicingBuildproperty to replace hardcodedPreReleaseVersionLabelchecks - Expands servicing build detection to include both 'servicing' and 'hotfix' labels
- Changes default package stabilization behavior from true to false
Reviewed Changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| eng/Versions.props | Introduces IsServicingBuild property and updates package stabilization default |
| src/mono/System.Private.CoreLib/System.Private.CoreLib.csproj | Updates InformationalVersion condition to use new property |
| src/coreclr/nativeaot/Directory.Build.props | Updates InformationalVersion condition to use new property |
| src/coreclr/System.Private.CoreLib/System.Private.CoreLib.csproj | Updates InformationalVersion condition to use new property |
| src/coreclr/.nuget/Directory.Build.targets | Updates StableVersion condition to use new property |
| src/coreclr/.nuget/Directory.Build.props | Updates shipping property condition to use new property |
| eng/packaging.targets | Updates multiple packaging conditions to use new property |
| Directory.Build.targets | Updates InformationalVersion condition to use new property |
This was referenced Oct 7, 2025
Open
Member
|
@mmitche failures do not look related. Good to go? |
Member
Author
yes |
steveisok
approved these changes
Dec 4, 2025
Member
|
/ba-g Known issues #29683 dotnet/dnceng#1883 dotnet/dnceng#3008 dotnet/dnceng#3412 #88027 |
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.
Enable the ability to produce non-stabilized hotfix servicing builds.