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