2002-09-03 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
[mono.git] / mcs / mbas / AssemblyInfo.cs
1 // MonoBASIC Compiler, this is a compiler for the MonoBASIC language, which is a superset of Visual Basic.NET
2 // Copyright (C) 2002  Rafael Teixeira
3 // 
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
8 // 
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 // 
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17 //
18
19 using System.Reflection;
20 using System.Runtime.CompilerServices;
21
22 //
23 // General Information about an assembly is controlled through the following 
24 // set of attributes. Change these attribute values to modify the information
25 // associated with an assembly.
26 //
27 [assembly: AssemblyTitle("MonoBASIC Compiler")]
28 [assembly: AssemblyDescription("This is a compiler for the MonoBASIC language, \nwhich is a superset of Visual Basic.NET")]
29 [assembly: AssemblyConfiguration("")]
30 [assembly: AssemblyCompany("")]
31 [assembly: AssemblyProduct("")]
32 [assembly: AssemblyCopyright("(c)2002 Rafael Teixeira")]
33 [assembly: AssemblyTrademark("")]
34 [assembly: AssemblyCulture("")]         
35
36 [assembly: Mono.Author("Ravi Pratap")]
37 [assembly: Mono.Author("Miguel de Icaza")]
38 [assembly: Mono.Author("Rafael Teixeira")]
39
40 [assembly: Mono.About("Distributed under the GPL")]
41
42 [assembly: Mono.UsageComplement("SOURCE-FILES")]
43
44 //[assembly: Mono.LicensingWith(Mono.GetOptions.Licenses.GPL)]
45 //[assembly: Mono.ForMoreInformation("http://www.go-mono.com")]
46 //[assembly: Mono.UsageClause("mbas [options] source-files")]
47
48 //
49 // Version information for an assembly consists of the following four values:
50 //
51 //      Major Version
52 //      Minor Version 
53 //      Build Number
54 //      Revision
55 //
56 // You can specify all the values or you can default the Revision and Build Numbers 
57 // by using the '*' as shown below:
58
59 [assembly: AssemblyVersion("1.0.*")]
60
61 //
62 // In order to sign your assembly you must specify a key to use. Refer to the 
63 // Microsoft .NET Framework documentation for more information on assembly signing.
64 //
65 // Use the attributes below to control which key is used for signing. 
66 //
67 // Notes: 
68 //   (*) If no key is specified, the assembly is not signed.
69 //   (*) KeyName refers to a key that has been installed in the Crypto Service
70 //       Provider (CSP) on your machine. KeyFile refers to a file which contains
71 //       a key.
72 //   (*) If the KeyFile and the KeyName values are both specified, the 
73 //       following processing occurs:
74 //       (1) If the KeyName can be found in the CSP, that key is used.
75 //       (2) If the KeyName does not exist and the KeyFile does exist, the key 
76 //           in the KeyFile is installed into the CSP and used.
77 //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
78 //       When specifying the KeyFile, the location of the KeyFile should be
79 //       relative to the project output directory which is
80 //       %Project Directory%\obj\<configuration>. For example, if your KeyFile is
81 //       located in the project directory, you would specify the AssemblyKeyFile 
82 //       attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
83 //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
84 //       documentation for more information on this.
85 //
86 [assembly: AssemblyDelaySign(false)]
87 [assembly: AssemblyKeyFile("")]
88 [assembly: AssemblyKeyName("")]