Subversion Repositories DevTools

Rev

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

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