summaryrefslogtreecommitdiff
path: root/src/corefx/System.Globalization.Native/normalization.cpp
AgeCommit message (Collapse)AuthorFilesLines
2016-10-26Remove dependency of System.Globalization.Native.so on specific ICU version ↵Jan Vorlicek1-1/+1
(#7773) Remove dependency of System.Globalization.Native.so on specific ICU version
2016-02-08Revert "Add un-prefixed signatures as temporary workaround"Jan Kotas1-18/+0
This reverts commit fb80bad2ed19970472ddefe539520abef42a52d0.
2016-01-30Revert "Revert "Add un-prefixed signatures as temporary workaround""Jan Kotas1-0/+18
2016-01-30Revert "Add un-prefixed signatures as temporary workaround"Jan Kotas1-18/+0
This reverts commit 6b1d2938ec4a5a2c64fd849797ec7800ed3ab575.
2016-01-29Add un-prefixed signatures as temporary workaroundJan Kotas1-0/+18
2016-01-29Unique names for GlobalizationNative exportsJan Kotas1-2/+3
For consistency and to enable eventual sharing of the same code with CoreRT, I have changed the naming convention for System.Globalization.Native exports to match dotnet/corefx#4818.
2016-01-27Update license headersdotnet-bot1-4/+3
2015-10-13Run format-code.shMatt Ellis1-14/+19
2015-09-22Build System.Native.Globalization on OSXMatt Ellis1-1/+0
This requires the 'icu4c' package from homebrew, which can be installed with `brew install icu4c`.
2015-09-22Add Normalization wrappers on top of ICUMatt Ellis1-0/+84
This change introduces System.Globalization.Native.so which will be the libary that we use to wrap all ICU functionality needed by the System.Globalization.* namespaces. The initial commit also adds wrappers around the string normalization functions which are exposed by the System.Globalization.Extensions contract.