Remove net11.0 framework choice descriptions from project templates - #65149
#65149Merged
akoeplinger merged 3 commits intoJan 21, 2026
maindotnet/aspnetcore:mainfrom
copilot/remove-net11-0-descriptionsdotnet/aspnetcore:copilot/remove-net11-0-descriptionsCopy head branch name to clipboard
Merged
Remove net11.0 framework choice descriptions from project templates#65149akoeplinger merged 3 commits intomaindotnet/aspnetcore:mainfrom copilot/remove-net11-0-descriptionsdotnet/aspnetcore:copilot/remove-net11-0-descriptionsCopy head branch name to clipboard
akoeplinger merged 3 commits into
maindotnet/aspnetcore:mainfrom
copilot/remove-net11-0-descriptionsdotnet/aspnetcore:copilot/remove-net11-0-descriptionsCopy head branch name to clipboard
Conversation
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Remove net11.0 description elements from template files
Remove net11.0 framework choice descriptions from project templates
Jan 21, 2026
wtgodbe
requested changes
Jan 21, 2026
| "type": "parameter", | ||
| "description": "The target framework for the project.", | ||
| "datatype": "choice", | ||
| "choices": [ |
Member
There was a problem hiding this comment.
Undo this change & instead just remove the "description" element under the "choices" element
Contributor
Author
There was a problem hiding this comment.
Fixed in 9f794e1. Only removed the "description" field from the choice object, keeping the choice itself.
…matting Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
wtgodbe
approved these changes
Jan 21, 2026
Member
|
These descriptions are redundant. Removing them removes a bunch of files from the set that we need to touch during each TFM update. |
wtgodbe
requested review from
MackinnonBuck,
akoeplinger,
ilonatommy,
javiercn and
lewing
January 21, 2026 01:05
wtgodbe
marked this pull request as ready for review
January 21, 2026 01:26
Contributor
There was a problem hiding this comment.
Pull request overview
This PR removes obsolete net11.0 framework choice descriptions from ASP.NET Core project templates to clean up template configuration files.
Changes:
- Removed
"description": "Target net11.0"field from net11.0 choice objects in template.json files across 14 templates - Removed
"symbols/Framework/choices/net11.0/description"entries from 196 localized templatestrings files
Reviewed changes
Copilot reviewed 210 out of 210 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| template.json files (14 templates) | Removed description field from net11.0 framework choice while preserving choice structure |
| templatestrings.*.json files (196 files across 14 locales) | Removed net11.0 framework choice description translations |
Member
akoeplinger
approved these changes
Jan 21, 2026
akoeplinger
added a commit
to dotnet/sdk
that referenced
this pull request
Feb 15, 2026
Update after dotnet/aspnetcore#65149 removed the description text from the net11.0 framework choice in web project templates.
akoeplinger
added a commit
that referenced
this pull request
Apr 10, 2026
…plate Similar to #65149. Also remve the unused root templatestrings.json
This was referenced Apr 10, 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 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.

Remove net11.0 framework choice descriptions from project templates
Description
Removed obsolete net11.0 framework choice descriptions from template configuration files while preserving the choice structure and all original file formatting.
Changes:
"symbols/Framework/choices/net11.0/description"entries from 196 localized templatestrings files across 14 project templates"description": "Target net11.0"field from net11.0 choice objects in template.json files, keeping the choice structure as{"choice": "net11.0"}Affected templates:
BlazorWeb, ComponentsWebAssembly, EmptyWeb (C#/F#), GrpcService, RazorClassLibrary, RazorPagesWeb, StarterWeb (C#/F#), WebApi (C#/F#), WebApiAot, Worker (C#/F#)
The Framework symbol's choices array now contains the net11.0 choice without a description field, maintaining the default value and replacement behavior.
Original 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.