2007-07-17 Jb Evain <jbevain@novell.com>
[mono.git] / mcs / class / Mono.Cecil / README
1 Cecil is a library to generate and inspect programs and libraries in the ECMA CIL format.
2
3 * Building
4
5         Simply type the usual commands:
6                 ./configure --prefix=/your/prefix
7                 make && make install
8
9 * Bugs
10
11         Please report bugs at:
12                 http://bugzilla.ximian.com,
13                 Product: Mono Class Library,
14                 Component: Mono.Cecil
15
16 * Layout
17
18         CodeGen/
19                 Here is a ruby code generation script. Do not modify generated files.
20                 Please modify template then run:
21
22                         ./cecil-gen.rb
23
24                 in this folder. If you add or remove files, please run:
25
26                         ./cecil-gen-sources.rb
27
28                 to update the file Mono.Cecil.dll.sources
29
30         Mono.Cecil/
31                 General implementation of Cecil.
32
33         Mono.Cecil.Binary/
34                 Here are files dealing with PE format.
35
36         Mono.Cecil.Metadata/
37                 Here lies files dealing with the format of metadata.
38
39         Mono.Cecil.Cil/
40                 Files dealing with CIL intermediate code.
41
42         Mono.Cecil.Signatures/
43                 Here are files dealing with signatures in blobs.
44
45 * Acknowledgements
46
47         Thanks to:
48                 - S\8ebastien Pouliot,
49                 - Todd Berman,
50                 - Martin Baulig,
51                 - S\8ebastien Ros,
52                 - Thomas Gil
53
54 * License
55
56     Copyright (C) 2005 Jb Evain
57
58     Permission is hereby granted, free of charge, to any person obtaining
59     a copy of this software and associated documentation files (the
60     "Software"), to deal in the Software without restriction, including
61     without limitation the rights to use, copy, modify, merge, publish,
62     distribute, sublicense, and/or sell copies of the Software, and to
63     permit persons to whom the Software is furnished to do so, subject to
64     the following conditions:
65
66     The above copyright notice and this permission notice shall be
67     included in all copies or substantial portions of the Software.
68
69     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
70     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
71     MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
72     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
73     LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
74     OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
75     WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.