1 This contains the C# components of the Mono project.
3 * Compilers written in C#
7 * Regression Test Suites
9 To install this source code, look at the INSTALL file in the `mono'
10 package module which drives the compilation of this directory.
16 Rules, configuration and makefile components to build
23 Some notes on the compiler and the class libraries.
26 Sample programs that should generate errors by the C# compiler.
32 Yacc-based parser generator.
38 Integrates some packages from NuGet (like Roslyn) into the build system.
41 Regression test suite for the C# compiler
44 Various small development tools: CorCompare used to compare
45 two assemblies for differences in the API; csharp is a C# REPL;
46 cil-strip trims IL from assemblies.
48 * Building Individual Directories
49 =================================
51 You can build individual components in the hierarchy by running the command
52 "make", and to install it use "make install".
54 By default, the 4.x profile is built, if you want to build other profiles,
55 use the following command:
57 make PROFILE=<profilename>
61 make PROFILE=<profilename> install
63 To turn on verbose mode in the build (for example to diagnose a
64 problem), you can use the V=1 flag, like this:
71 You can run unit tests in individual components by running the command:
75 If you want to only run the tests in a single fixture (say
76 'MonoTests.System.TypeTest'), you can use
78 make run-test TEST_FIXTURE=System.TypeTest
83 Thanks a lot to Sergey Chaban for his help during the development of