We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When Invariant mode is enabled and we are publishing for iOS / tvOS, we must ensure that no ICU artifacts are produced.
Example: dotnet publish <required-args> /p:InvariantGlobalization=true
dotnet publish <required-args> /p:InvariantGlobalization=true
No ICU binaries should be in the publish folder.
The text was updated successfully, but these errors were encountered:
Tagging subscribers to this area: @directhex Notify danmosemsft if you want to be subscribed.
Sorry, something went wrong.
Using the env var is a bad idea, we should rather use the InvariantGlobalization MSBuild property: https://docs.microsoft.com/en-us/dotnet/core/run-time-config/globalization#invariant-mode
InvariantGlobalization
I updated the example. I meant it to be 'pick any option to enable' ;-).
akoeplinger
No branches or pull requests
When Invariant mode is enabled and we are publishing for iOS / tvOS, we must ensure that no ICU artifacts are produced.
Example:
dotnet publish <required-args> /p:InvariantGlobalization=true
No ICU binaries should be in the publish folder.
The text was updated successfully, but these errors were encountered: