[9.0] Fix Debian package descriptions - #68256
Merged
Merged
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 task
Contributor
There was a problem hiding this comment.
Pull request overview
Adjusts Debian package metadata for the ASP.NET Core runtime/targeting pack so Debian tools display a short, non-empty synopsis (first line) while keeping the intended long descriptions.
Changes:
- Runtime Debian package: replace
PackageSummarybased onSharedFxProductName(empty at evaluation time) with an evaluation-time-safe summary usingSharedFxName+VersionPrefix. - Targeting pack Debian package: stop overwriting the targeting-pack-specific summary/description with shared framework values.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| src/Installers/Debian/TargetingPack/Debian.TargetingPack.debproj | Removes late/empty-overwrite of summary/description so targeting-pack-specific metadata is preserved. |
| src/Installers/Debian/Runtime/Debian.Runtime.debproj | Sets a short, non-empty runtime package synopsis using evaluation-time properties. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Contributor
|
Hey @dotnet/aspnet-build, looks like this PR is something you want to take a look at. |
This was referenced Sep 9, 2026
Merged
Merged
This was referenced Sep 10, 2026
Open
Merged
Merged
Merged
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.
Sets a short, non-empty synopsis for the ASP.NET Core runtime Debian package and preserves the targeting pack summary and package-specific description.
SharedFxProductName is assigned after project evaluation, so using it in these projects produced an empty first line and caused Debian tools to display the long description as the synopsis.
Contributes to #64105.