Remove team
[mono-project.git] / README
blob07c2df049aff42b38c5d0ef97b478c39b4645af5
2 This is Mono.
4 Installation:
6         Read doc/download for installation instructions, 
7         or read the HTML version:
9                 http://www.go-mono.com/download.html
11 * Using Mono
13         Once you have installed the software, you can run a few programs:
15         * runtime engine
17                 mono program.exe
18           or
19                 mint program.exe
21         * C# compiler
23                 mcs program.cs
25         * CIL Disassembler
27                 monodis program.exe
29         See the man pages for mono(1), mint(1), monodis(1) and mcs(2)
30         for further details.
32 * A directory roadmap:
34         doc/
35                 Contains documentation and the web site contents.
37         mono/
38                 The core of the Mono Runtime.
40                 metadata/
41                         The object system and metadata reader.
43                 jit/
44                         The Just in Time Compiler.
46                 dis/
47                         CIL executable Disassembler
49                 cli/
50                         Common code for the JIT and the interpreter.
52                 io-layer/
53                         The I/O layer and system abstraction for 
54                         emulating the .NET IO model.
56                 cil/
57                         Common Intermediate Representation, XML
58                         definition of the CIL bytecodes.
60                 interp/
61                         Interpreter for CLI executables.
63                 arch/
64                         Architecture specific portions.