Subversion Repositories DevTools

Rev

Rev 2126 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2088 ghuddy 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
//
2126 ghuddy 9
[assembly: AssemblyTitle("EA_DocGen")]
2136 brianf 10
[assembly: AssemblyDescription("A document generation add-in for Sparx Systems Enterprise Architect v7.5")]
2088 ghuddy 11
[assembly: AssemblyConfiguration("")]
12
[assembly: AssemblyCulture("")]		
13
 
14
 
15
//
16
// In order to sign your assembly you must specify a key to use. Refer to the 
17
// Microsoft .NET Framework documentation for more information on assembly signing.
18
//
2126 ghuddy 19
// Use the attributes belo to control which key is used for signing. 
2088 ghuddy 20
//
21
// Notes: 
22
//   (*) If no key is specified, the assembly is not signed.
23
//   (*) KeyName refers to a key that has been installed in the Crypto Service
24
//       Provider (CSP) on your machine. KeyFile refers to a file which contains
25
//       a key.
26
//   (*) If the KeyFile and the KeyName values are both specified, the 
27
//       following processing occurs:
28
//       (1) If the KeyName can be found in the CSP, that key is used.
29
//       (2) If the KeyName does not exist and the KeyFile does exist, the key 
30
//           in the KeyFile is installed into the CSP and used.
31
//   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
32
//       When specifying the KeyFile, the location of the KeyFile should be
33
//       relative to the project output directory which is
34
//       %Project Directory%\obj\<configuration>. For example, if your KeyFile is
35
//       located in the project directory, you would specify the AssemblyKeyFile 
36
//       attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
37
//   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
38
//       documentation for more information on this.
39
//
40
[assembly: AssemblyDelaySign(false)]
41
[assembly: AssemblyKeyFile("")]
42
[assembly: AssemblyKeyName("")]