2002-08-15 Tim Coleman <tim@timcoleman.com>
[mono.git] / mcs / mbas / AssemblyInfo.cs
1 using System.Reflection;
2 using System.Runtime.CompilerServices;
3
4 //
5 // General Information about an assembly is controlled through the following 
6 // set of attributes. Change these attribute values to modify the information
7 // associated with an assembly.
8 //
9 [assembly: AssemblyTitle("MonoBASIC Compiler")]
10 [assembly: AssemblyDescription("This is a compiler for the MonoBASIC language, \nwhich is a superset of Visual Basic.NET")]
11 [assembly: AssemblyConfiguration("")]
12 [assembly: AssemblyCompany("")]
13 [assembly: AssemblyProduct("")]
14 [assembly: AssemblyCopyright("(c)2002 Rafael Teixeira")]
15 [assembly: AssemblyTrademark("")]
16 [assembly: AssemblyCulture("")]         
17
18 [assembly: Mono.GetOptions.Author("Ravi Pratap")]
19 [assembly: Mono.GetOptions.Author("Miguel de Icaza")]
20 [assembly: Mono.GetOptions.Author("Rafael Teixeira")]
21
22 [assembly: Mono.GetOptions.LicensingWith(Mono.GetOptions.Licenses.GPL)]
23 [assembly: Mono.GetOptions.ForMoreInformation("http://www.go-mono.com")]
24 [assembly: Mono.GetOptions.UsageClause("mbas [options] source-files")]
25
26 //
27 // Version information for an assembly consists of the following four values:
28 //
29 //      Major Version
30 //      Minor Version 
31 //      Build Number
32 //      Revision
33 //
34 // You can specify all the values or you can default the Revision and Build Numbers 
35 // by using the '*' as shown below:
36
37 [assembly: AssemblyVersion("1.0.*")]
38
39 //
40 // In order to sign your assembly you must specify a key to use. Refer to the 
41 // Microsoft .NET Framework documentation for more information on assembly signing.
42 //
43 // Use the attributes below to control which key is used for signing. 
44 //
45 // Notes: 
46 //   (*) If no key is specified, the assembly is not signed.
47 //   (*) KeyName refers to a key that has been installed in the Crypto Service
48 //       Provider (CSP) on your machine. KeyFile refers to a file which contains
49 //       a key.
50 //   (*) If the KeyFile and the KeyName values are both specified, the 
51 //       following processing occurs:
52 //       (1) If the KeyName can be found in the CSP, that key is used.
53 //       (2) If the KeyName does not exist and the KeyFile does exist, the key 
54 //           in the KeyFile is installed into the CSP and used.
55 //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
56 //       When specifying the KeyFile, the location of the KeyFile should be
57 //       relative to the project output directory which is
58 //       %Project Directory%\obj\<configuration>. For example, if your KeyFile is
59 //       located in the project directory, you would specify the AssemblyKeyFile 
60 //       attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
61 //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
62 //       documentation for more information on this.
63 //
64 [assembly: AssemblyDelaySign(false)]
65 [assembly: AssemblyKeyFile("")]
66 [assembly: AssemblyKeyName("")]