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.
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
[iOS][non-icu] HybridGlobalization use system ICU #93220
[iOS][non-icu] HybridGlobalization use system ICU #93220
Changes from all commits
2d149a4
4bd2918
8bf39c6
d5bcd12
c2f7ac4
064b71b
47f0271
82c04b1
6796080
d3fcc60
fb34efc
2e0900c
a91cdf7
7d6641d
5097d38
4ad9b4e
455aa2a
64b9309
39785db
1caed2e
7beec5c
f097dec
87f2011
bbf590e
125ce63
182e069
662d5ea
6360fd4
a3db930
5860103
16b3847
710ce29
71ad42f
ef3f945
49ef3ab
3bbe6d8
380efe4
429d777
1d1021e
6ecdeae
814cadc
7702cf7
b0c1a51
d9d1136
fc9d472
7e7bf74
d165171
7049e31
6debeb5
68b8b88
7b640e0
7330fdf
760de2a
1cf723c
b381ef0
2e29b1d
1171ce0
043e638
b8c697b
37681f2
e7111bd
8c5d9f0
a6fe664
d8658ce
45428ef
cf153d9
90026f0
696ff66
5354f28
f446fcd
bd73666
5788349
914a7aa
ba92af7
eff8512
5c53525
6d5ecde
8e2dd91
32d5db1
1134b7a
714ac50
f16988c
af8ba6a
ba37d39
52b8f35
222d528
940042b
9ecc945
317bd6a
a18110c
caafa6b
352c1c2
d29f2b5
3e4a8ba
2944f96
8a2ce03
09dd476
43aca30
d94c917
6193794
6321784
d7613f3
8ec7727
6cb3ff0
3fe8320
6ca8bd1
a50fb14
f6708f0
7dfc908
213f6a4
35d3b34
5127785
20096cd
cdb2ba2
1245214
336f050
ae7d959
b602e0a
71d9717
83076e0
c422d07
2b42a43
ba3aecb
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
This does not look right. We ignore the user's setting now if they would like to disable HG (keep in mind that while setting HG as default it has certain differences in behavior that users might not want to accept and they would prefer to switch HG off). Use
DOTNET_SYSTEM_GLOBALIZATION_HYBRID
to propagate the MSBuild setting to managed code.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.
This is done intentionally as we were facing issue with some FunctionalTests.
This PR does not allow for iOS to have Hybrid as switch, instead it will work only with Hybrid mode.
The reason is in runtime we need to duplicate a lot of files and build 2 runtimes (1. Loading ICU libs 2. Hybrid using system ICU) to be able to have Hybrid mode as switch. We decided for now to make changes the way to have only one runtime with Hybrid mode.