more WIP
[mono-project.git] / README
blob95e4b3806a1ec854f1a7620e0dff6759117675db
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 A directory roadmap:
13         doc/
14                 Contains documentation and the web site contents.
16         mono/
17                 The core of the executable.
19                 metadata/
20                         The library to deal with executables and libraries for
21                         .NET
23                 dis/
24                         CIL executable Disassembler
26                 cli/
27                         Common code for the JIT and the interpreter.
29                 cil/
30                         Common Intermediate Representation, XML
31                         definition of the CIL bytecodes.
33                 interp/
34                         Interpreter for CLI executables.
36 * Using Mono
38         Once you have installed the software, you can run a few programs:
40                 monodis program.exe
42         That will dump the bytecodes for program.exe.  Monodis support
43         a number of options that dumps various metadata tables
44         (chapter 23 of the Partition III).
46         You can try the interpreter like this:
48                 mint program.exe