AssemblyInfo.cs
author sl
Tue, 04 Nov 2014 19:31:32 +0100
changeset 0 82a61d3d2706
child 76 831ebeeecfdf
permissions -rw-r--r--
Initial contribution. Partly working with PCS-MCE.
sl@0
     1
using System.Reflection;
sl@0
     2
using System.Runtime.CompilerServices;
sl@0
     3
sl@0
     4
//
sl@0
     5
// General Information about an assembly is controlled through the following 
sl@0
     6
// set of attributes. Change these attribute values to modify the information
sl@0
     7
// associated with an assembly.
sl@0
     8
//
sl@0
     9
[assembly: AssemblyTitle("")]
sl@0
    10
[assembly: AssemblyDescription("")]
sl@0
    11
[assembly: AssemblyConfiguration("")]
sl@0
    12
[assembly: AssemblyCompany("")]
sl@0
    13
[assembly: AssemblyProduct("")]
sl@0
    14
[assembly: AssemblyCopyright("")]
sl@0
    15
[assembly: AssemblyTrademark("")]
sl@0
    16
[assembly: AssemblyCulture("")]		
sl@0
    17
sl@0
    18
//
sl@0
    19
// Version information for an assembly consists of the following four values:
sl@0
    20
//
sl@0
    21
//      Major Version
sl@0
    22
//      Minor Version 
sl@0
    23
//      Build Number
sl@0
    24
//      Revision
sl@0
    25
//
sl@0
    26
// You can specify all the values or you can default the Revision and Build Numbers 
sl@0
    27
// by using the '*' as shown below:
sl@0
    28
sl@0
    29
[assembly: AssemblyVersion("1.0.*")]
sl@0
    30
sl@0
    31
//
sl@0
    32
// In order to sign your assembly you must specify a key to use. Refer to the 
sl@0
    33
// Microsoft .NET Framework documentation for more information on assembly signing.
sl@0
    34
//
sl@0
    35
// Use the attributes below to control which key is used for signing. 
sl@0
    36
//
sl@0
    37
// Notes: 
sl@0
    38
//   (*) If no key is specified, the assembly is not signed.
sl@0
    39
//   (*) KeyName refers to a key that has been installed in the Crypto Service
sl@0
    40
//       Provider (CSP) on your machine. KeyFile refers to a file which contains
sl@0
    41
//       a key.
sl@0
    42
//   (*) If the KeyFile and the KeyName values are both specified, the 
sl@0
    43
//       following processing occurs:
sl@0
    44
//       (1) If the KeyName can be found in the CSP, that key is used.
sl@0
    45
//       (2) If the KeyName does not exist and the KeyFile does exist, the key 
sl@0
    46
//           in the KeyFile is installed into the CSP and used.
sl@0
    47
//   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
sl@0
    48
//       When specifying the KeyFile, the location of the KeyFile should be
sl@0
    49
//       relative to the project output directory which is
sl@0
    50
//       %Project Directory%\obj\<configuration>. For example, if your KeyFile is
sl@0
    51
//       located in the project directory, you would specify the AssemblyKeyFile 
sl@0
    52
//       attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
sl@0
    53
//   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
sl@0
    54
//       documentation for more information on this.
sl@0
    55
//
sl@0
    56
[assembly: AssemblyDelaySign(false)]
sl@0
    57
[assembly: AssemblyKeyFile("")]
sl@0
    58
[assembly: AssemblyKeyName("")]