svn path=/branches/mono-1-1-9/mcs/; revision=50438
[mono.git] / mcs / README
1 This contains code written in C# of Mono, it contains:
2
3         * Compilers written in C#
4
5         * Class Libraries.
6
7         * Regression Test Suites
8
9 To install this source code, look at the INSTALL file in the `mono'
10 package module which drives the compilation of this directory.
11
12 Layout:
13
14         bmcs/
15                 New experimental Basic compiler.
16
17         build/
18                 Rules, configuration and makefile components to build
19                 this module.
20
21         class/
22                 The class libraries.
23
24         errors/
25                 Sample programs that should generate errors by the C# compiler.
26
27         gmcs/
28
29                 The Mono C# compiler with Generics support.  This will
30                 become the default in Mono 2.0.
31
32         jay/
33                 Yacc-based parser generator.
34
35         mcs/
36                 The Mono C# compiler (1.0 + 2.0 minus generics).
37
38         tests/
39                 Regression test suite for the C# compiler
40
41         docs/
42                 Some notes on the compiler and the class libraries.
43
44         nant/
45                 A copy of nant source code, used during the build process
46                 on Windows.
47
48         tools/
49                 Various small development tools: CorCompare used to compare
50                 two assemblies for differences in the API;   TypeReflector is 
51                 a tool used to introspect types from assemblies from the 
52                 command line;  MonoStyle helps you keep your code indendented
53                 with the Mono programming style.
54
55
56 Thanks a lot to Sergey Chaban for his help during the development of
57 the C# compiler.
58
59 LICENSE
60
61 The mcs C# compiler and monoresgen are licensed to you under the GPL, version 2.
62 The complete text of the GPL is in the 'COPYING' file.
63
64     Copyright (C) 2001-2002  Ximian, Inc.
65
66     This program is free software; you can redistribute it and/or modify
67     it under the terms of version 2 of the GNU General Public License as 
68     published by the Free Software Foundation.
69
70     This program is distributed in the hope that it will be useful,
71     but WITHOUT ANY WARRANTY; without even the implied warranty of
72     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
73     GNU General Public License for more details.
74
75     You should have received a copy of the GNU General Public License
76     along with this program; if not, write to the Free Software
77     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
78
79 The class libraries are licensed according to the following license:
80
81     Copyright (C) 2001-2002  Ximian, Inc.
82
83 Permission is hereby granted, free of charge, to any person obtaining a
84 copy of this software and associated documentation files (the "Software"),
85 to deal in the Software without restriction, including without limitation
86 the rights to use, copy, modify, merge, publish, distribute, sublicense,
87 and/or sell copies of the Software, and to permit persons to whom the
88 Software is furnished to do so, subject to the following conditions:
89
90 The above copyright notice and this permission notice shall be included
91 in all copies or substantial portions of the Software.
92
93 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
94 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
95 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
96 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
97 OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
98 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
99 OTHER DEALINGS IN THE SOFTWARE.
100