-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Add Visual Studio 2026 support to InstallVisualStudio.ps1 #64406
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
Greetings human! You've submitted a PR that modifies code that is shared with https://github.com/dotnet/runtime . Please make sure you synchronize this code with the changes in that repo! |
Co-authored-by: adityamandaleeka <[email protected]>
|
@copilot the internal number for VS2026 is 18, not 19. |
Co-authored-by: adityamandaleeka <[email protected]>
| "Microsoft.VisualStudio.Component.VC.ATL.ARM64", | ||
| "Microsoft.VisualStudio.Component.VC.Tools.ARM64", | ||
| "Microsoft.VisualStudio.Component.VC.Tools.x86.x64", | ||
| "Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM64", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where did these numbers come from?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think those are just copied from the v17 one https://github.com/dotnet/aspnetcore/blob/main/eng/scripts/vs.17.intpreview.json
wtgodbe
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM if it works locally
Add Visual Studio 2026 support to InstallVisualStudio.ps1
Enable VS 2026 installation via build-from-source script
Description
The
InstallVisualStudio.ps1script only supported VS 2022. This adds VS 2026 support following the existing pattern where VS 2022 maps to internal version 17.Script changes:
'2026'to Version parameter ValidateSetResponse files:
Created six VS 2026 JSON configuration files (
vs.18.*.json) mirroring the VS 2022 structure:https://aka.ms/vs/18/{channel}/channelVisualStudio.18.{Channel}formatNo changes to existing VS 2022 functionality.
Fixes #64405
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.