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