[docs] Update 13.4 what's new: aspire.config.json template profiles regression fix#1192
Draft
aspire-repo-bot[bot] wants to merge 1 commit into
Draft
Conversation
… AppHost The C# empty AppHost template (aspire new aspire-empty) in Aspire 13.4 was generating a duplicate profiles block in aspire.config.json that was also present in apphost.run.json. This regression is fixed in microsoft/aspire#17820: launch profiles now live exclusively in apphost.run.json and aspire.config.json is minimal (AppHost path only). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
Author
Frontend HTML artifact readyThe latest frontend build uploaded the This comment updates automatically when a new frontend build artifact is uploaded. |
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.
Documents changes from microsoft/aspire#17820
@aspire-repo-bot[bot] (backport of changes authored for microsoft/aspire#17781)Targeting
release/13.4based on the source PR base refrelease/13.4.Why this PR is needed
Aspire 13.4 introduced a regression (#17660) where
aspire new aspire-emptyfor a C# project emitted aprofilesblock inaspire.config.jsonthat duplicated content already present inapphost.run.json. This was confusing for users who saw the same profile data in both files and might wonder whether the files could drift.microsoft/aspire#17820 fixes the regression:
aspire.config.jsonis now minimal and only identifies the AppHost entry point (appHost.path), whileapphost.run.jsonis the authoritative home for launch profiles.The existing what's-new/aspire-13-4.mdx page mentioned
aspire newfixes generically but did not call out this specific user-visible change in scaffolded file output.Changes
src/frontend/src/content/docs/whats-new/aspire-13-4.mdx: added a new bullet in the CLI improvements section explaining that the C# empty AppHost template no longer emits a duplicateprofilesblock inaspire.config.json.Files modified
src/frontend/src/content/docs/whats-new/aspire-13-4.mdx(updated)