-
Notifications
You must be signed in to change notification settings - Fork 5k
Use sln format for coreclr and corehost #115935
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
Conversation
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.
Pull Request Overview
This PR updates the build script to use the .sln format for both coreclr and corehost instead of the previous .slnx format.
- Updated help message examples to reflect the new .sln format.
- Changed conditionals and file path constructions to generate and reference .sln files for both coreclr and corehost.
@@ -59,7 +59,7 @@ function Get-Help() { | |||
Write-Host " [Default: Minimal]" | |||
Write-Host " -vs Open the solution with Visual Studio using the locally acquired SDK." | |||
Write-Host " Path or any project or solution name is accepted." | |||
Write-Host " (Example: -vs Microsoft.CSharp or -vs CoreCLR.slnx)" | |||
Write-Host " (Example: -vs Microsoft.CSharp or -vs CoreCLR.sln)" |
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.
Ensure that the help message example is consistent with the updated solution file generation logic across the script.
Copilot uses AI. Check for mistakes.
Tagging subscribers to this area: @hoyosjs |
Thanks for fixing this quickly! |
/ba-g these changes aren't exercised in CI |
* Use sln format for coreclr and corehost * Update Program.cs
Follow-up on #115818