Merge pull request #948 from ermshiperete/bug-xamarin-2394
[mono.git] / mcs / class / corlib / Mono.Globalization.Unicode / README
index be5168547f008ea0416b5f9b5f08061cd49b3bb7..256fedbfe18418b71bc5d88cf4c839276794cbd0 100644 (file)
@@ -1,13 +1,25 @@
 
 This directory contains support for Unicode normalization and collation.
 
-This branch contains Normalization.cs and CollationElementTable.cs which
-can be built from generator executables and Unicode Character Database found
-at unicode.org (see Makefile for details).
+** generated files
 
-Many of the files in this directory are subject to change (for example,
-being rewritten to generate C header like char-conversions.h and
-culture-info-table.h).
+       There are several files to be autogenerated:
 
-Atsushi Eno <atsushi@ximian.com>
+       - MSCompatUnicodeTableGenerated.cs : support for collation, but
+         for standalone testing purpose.
+       - Normalization.cs : support for String.Normalize()
+       - CollationElementTable.cs : used in code generators which generate
+         above two sources.
+       - ../collation.core.bin,
+         ../collation.tailoring.bin,
+         ../collation.cjkCHS.bin,
+         ../collation.cjkCHT.bin,
+         ../collation.cjkJA.bin,
+         ../collation.cjkKO.bin,
+         ../collation.cjkKOlv2.bin : collation table binary resoueces.
+
+       To generate those files, run "make" in this directory. It requires 
+       internet access for the first time to download dependency files from
+       the web.
 
+Atsushi Eno <atsushi@ximian.com>