-
Notifications
You must be signed in to change notification settings - Fork 4k
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
Add required --locale
option to BuildHost
#74910
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.
Code looks good; can we add a test somehow?
{ | ||
CultureInfo.CurrentUICulture = CultureInfo.GetCultureInfo(locale); | ||
} | ||
catch (CultureNotFoundException) |
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 absolutely expect this check is needed, since the locale here might cross between .NET Core and .NET Framework (and in both directions), so best to be careful here.
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
When invoking the BuildHost pass along the
CurrentUICulture.Name
. This will allow reported exceptions to match the language of the process which is using the MSBuildWorkspace.Resolves #74902