~ubuntu-branches/ubuntu/dapper/ikvm/dapper

« back to all changes in this revision

Viewing changes to ikvmstub/AssemblyInfo.cs

  • Committer: Bazaar Package Importer
  • Author(s): John Goerzen
  • Date: 2004-08-26 10:18:19 UTC
  • Revision ID: james.westby@ubuntu.com-20040826101819-plz8au2mx4uk1cvc
Tags: upstream-0.8.0.0
ImportĀ upstreamĀ versionĀ 0.8.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  Copyright (C) 2002 Jeroen Frijters
 
3
 
 
4
  This software is provided 'as-is', without any express or implied
 
5
  warranty.  In no event will the authors be held liable for any damages
 
6
  arising from the use of this software.
 
7
 
 
8
  Permission is granted to anyone to use this software for any purpose,
 
9
  including commercial applications, and to alter it and redistribute it
 
10
  freely, subject to the following restrictions:
 
11
 
 
12
  1. The origin of this software must not be misrepresented; you must not
 
13
     claim that you wrote the original software. If you use this software
 
14
     in a product, an acknowledgment in the product documentation would be
 
15
     appreciated but is not required.
 
16
  2. Altered source versions must be plainly marked as such, and must not be
 
17
     misrepresented as being the original software.
 
18
  3. This notice may not be removed or altered from any source distribution.
 
19
 
 
20
  Jeroen Frijters
 
21
  jeroen@frijters.net
 
22
  
 
23
*/
 
24
using System.Reflection;
 
25
using System.Runtime.CompilerServices;
 
26
 
 
27
//
 
28
// General Information about an assembly is controlled through the following 
 
29
// set of attributes. Change these attribute values to modify the information
 
30
// associated with an assembly.
 
31
//
 
32
[assembly: AssemblyTitle("")]
 
33
[assembly: AssemblyDescription("")]
 
34
[assembly: AssemblyConfiguration("")]
 
35
[assembly: AssemblyCompany("")]
 
36
[assembly: AssemblyProduct("")]
 
37
[assembly: AssemblyCopyright("")]
 
38
[assembly: AssemblyTrademark("")]
 
39
[assembly: AssemblyCulture("")]         
 
40
 
 
41
//
 
42
// Version information for an assembly consists of the following four values:
 
43
//
 
44
//      Major Version
 
45
//      Minor Version 
 
46
//      Build Number
 
47
//      Revision
 
48
//
 
49
// You can specify all the values or you can default the Revision and Build Numbers 
 
50
// by using the '*' as shown below:
 
51
 
 
52
[assembly: AssemblyVersion("0.8.0.0")]
 
53
 
 
54
//
 
55
// In order to sign your assembly you must specify a key to use. Refer to the 
 
56
// Microsoft .NET Framework documentation for more information on assembly signing.
 
57
//
 
58
// Use the attributes below to control which key is used for signing. 
 
59
//
 
60
// Notes: 
 
61
//   (*) If no key is specified, the assembly is not signed.
 
62
//   (*) KeyName refers to a key that has been installed in the Crypto Service
 
63
//       Provider (CSP) on your machine. KeyFile refers to a file which contains
 
64
//       a key.
 
65
//   (*) If the KeyFile and the KeyName values are both specified, the 
 
66
//       following processing occurs:
 
67
//       (1) If the KeyName can be found in the CSP, that key is used.
 
68
//       (2) If the KeyName does not exist and the KeyFile does exist, the key 
 
69
//           in the KeyFile is installed into the CSP and used.
 
70
//   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
 
71
//       When specifying the KeyFile, the location of the KeyFile should be
 
72
//       relative to the project output directory which is
 
73
//       %Project Directory%\obj\<configuration>. For example, if your KeyFile is
 
74
//       located in the project directory, you would specify the AssemblyKeyFile 
 
75
//       attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
 
76
//   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
 
77
//       documentation for more information on this.
 
78
//
 
79
[assembly: AssemblyDelaySign(false)]
 
80
[assembly: AssemblyKeyFile("")]
 
81
[assembly: AssemblyKeyName("")]