summaryrefslogtreecommitdiff
path: root/clr.coreclr.props
diff options
context:
space:
mode:
authorMatt Ellis <matell@microsoft.com>2015-07-15 11:22:39 -0700
committerMatt Ellis <matell@microsoft.com>2015-09-25 14:41:23 -0700
commit62faf7e4cbbc74e89632a22c3c1b50dc114ba2d2 (patch)
tree771959a6eecc9da1a1942065eecd4c54618d2c77 /clr.coreclr.props
parentf4560c6e113741d2296f2ebbc4cd6e6427b57a88 (diff)
downloadcoreclr-62faf7e4cbbc74e89632a22c3c1b50dc114ba2d2.tar.gz
coreclr-62faf7e4cbbc74e89632a22c3c1b50dc114ba2d2.tar.bz2
coreclr-62faf7e4cbbc74e89632a22c3c1b50dc114ba2d2.zip
Implement basic collation on top of ICU
This change adds support for basic Unicode collation support, built on top of ICU. Windows and ICU have different collation models, and the windows model does not correspond 1:1 with the ICU model, so in addition to differences in sort weights between the two platforms, the CompareOptions enum does not map nicely to ICU options. For now, we only map CompareOptions.None, CompareOptions.IgnoreCase as well as CompareOptions.Ordinal and CompareOptions.OrdinalIngoreCase, other CompareOptions are ignored during collation. In addition to collation support, I have enabed the randomized string hashing code (using Marvin32 + a per app domain seed) so that string hashcodes are not predictable across runs.
Diffstat (limited to 'clr.coreclr.props')
-rw-r--r--clr.coreclr.props5
1 files changed, 1 insertions, 4 deletions
diff --git a/clr.coreclr.props b/clr.coreclr.props
index b47de7b48f..819fd6f829 100644
--- a/clr.coreclr.props
+++ b/clr.coreclr.props
@@ -101,9 +101,6 @@
<ProfilingSupportedBuild>false</ProfilingSupportedBuild>
- <!-- UNIXTODO Enable randomized string hashing -->
- <FeatureRandomizedStringHashing>false</FeatureRandomizedStringHashing>
-
<!-- Windows specific features -->
<FeatureWin32Registry>false</FeatureWin32Registry>
<FeatureAppX>false</FeatureAppX>
@@ -125,4 +122,4 @@
<FeatureCoreFxGlobalization>true</FeatureCoreFxGlobalization>
</PropertyGroup>
-</Project> \ No newline at end of file
+</Project>