2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / nunit20 / nunit-console / AssemblyInfo.cs
1 #region Copyright (c) 2002-2003, James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole, Philip A. Craig
2 /************************************************************************************
3 '
4 ' Copyright © 2002-2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
5 ' Copyright © 2000-2002 Philip A. Craig
6 '
7 ' This software is provided 'as-is', without any express or implied warranty. In no 
8 ' event will the authors be held liable for any damages arising from the use of this 
9 ' software.
10
11 ' Permission is granted to anyone to use this software for any purpose, including 
12 ' commercial applications, and to alter it and redistribute it freely, subject to the 
13 ' following restrictions:
14 '
15 ' 1. The origin of this software must not be misrepresented; you must not claim that 
16 ' you wrote the original software. If you use this software in a product, an 
17 ' acknowledgment (see the following) in the product documentation is required.
18 '
19 ' Portions Copyright © 2002-2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
20 ' or Copyright © 2000-2002 Philip A. Craig
21 '
22 ' 2. Altered source versions must be plainly marked as such, and must not be 
23 ' misrepresented as being the original software.
24 '
25 ' 3. This notice may not be removed or altered from any source distribution.
26 '
27 '***********************************************************************************/
28 #endregion
29
30 using System.Reflection;
31 using System.Runtime.CompilerServices;
32
33 //
34 // General Information about an assembly is controlled through the following 
35 // set of attributes. Change these attribute values to modify the information
36 // associated with an assembly.
37 //
38 [assembly: AssemblyTitle("")]
39 [assembly: AssemblyDescription("")]
40 [assembly: AssemblyConfiguration("")]
41 [assembly: AssemblyCompany("")]
42 [assembly: AssemblyProduct("NUnit")]
43 [assembly: AssemblyCopyright("Copyright (C) 2002-2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole.\r\nCopyright (C) 2000-2003 Philip Craig.\r\nAll Rights Reserved.")]
44 [assembly: AssemblyTrademark("")]
45 [assembly: AssemblyCulture("")]         
46
47 //
48 // Version information for an assembly consists of the following four values:
49 //
50 //      Major Version
51 //      Minor Version 
52 //      Build Number
53 //      Revision
54 //
55 // You can specify all the values or you can default the Revision and Build Numbers 
56 // by using the '*' as shown below:
57
58
59 [assembly: AssemblyVersion("2.2.0.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("")]