2002-08-04 Rodrigo Moya <rodrigo@ximian.com>
[mono.git] / README
1
2 This is Mono.
3
4 Installation:
5
6         Read doc/download for installation instructions, 
7         or read the HTML version:
8
9                 http://www.go-mono.com/download.html
10
11 A directory roadmap:
12
13         doc/
14                 Contains documentation and the web site contents.
15
16         mono/
17                 The core of the executable.
18
19                 metadata/
20                         The library to deal with executables and libraries for
21                         .NET
22
23                 dis/
24                         CIL executable Disassembler
25
26                 cli/
27                         Common code for the JIT and the interpreter.
28
29                 cil/
30                         Common Intermediate Representation, XML
31                         definition of the CIL bytecodes.
32
33                 interp/
34                         Interpreter for CLI executables.
35
36 * Using Mono
37
38         Once you have installed the software, you can run a few programs:
39
40                 monodis program.exe
41
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).
45
46         You can try the interpreter like this:
47
48                 mint program.exe
49
50
51
52