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