Mercurial > repos > SquishWrapper
annotate AssemblyInfo.cs @ 0:736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Tue, 17 Feb 2009 11:55:47 +0000 |
parents | |
children |
rev | line source |
---|---|
0
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
1 using System.Reflection; |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
2 using System.Runtime.CompilerServices; |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
3 |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
4 // |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
5 // General Information about an assembly is controlled through the following |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
6 // set of attributes. Change these attribute values to modify the information |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
7 // associated with an assembly. |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
8 // |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
9 [assembly: AssemblyTitle("Squish Wrapper")] |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
10 [assembly: AssemblyDescription("A simple wrapper for the Squish libraries based on the DdsSquish.cs file from Dean Ashton's Paint.NET plugin")] |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
11 [assembly: AssemblyConfiguration("")] |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
12 [assembly: AssemblyCompany("")] |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
13 [assembly: AssemblyProduct("Squish Wrapper")] |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
14 [assembly: AssemblyCopyright("2007 IBBoard and 2006 Dean Ashton")] |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
15 [assembly: AssemblyTrademark("")] |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
16 [assembly: AssemblyCulture("")] |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
17 |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
18 // |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
19 // Version information for an assembly consists of the following four values: |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
20 // |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
21 // Major Version |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
22 // Minor Version |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
23 // Build Number |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
24 // Revision |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
25 // |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
26 // You can specify all the values or you can default the Revision and Build Numbers |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
27 // by using the '*' as shown below: |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
28 |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
29 [assembly: AssemblyVersion("1.0.*")] |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
30 |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
31 // |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
32 // In order to sign your assembly you must specify a key to use. Refer to the |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
33 // Microsoft .NET Framework documentation for more information on assembly signing. |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
34 // |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
35 // Use the attributes below to control which key is used for signing. |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
36 // |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
37 // Notes: |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
38 // (*) If no key is specified, the assembly is not signed. |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
39 // (*) KeyName refers to a key that has been installed in the Crypto Service |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
40 // Provider (CSP) on your machine. KeyFile refers to a file which contains |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
41 // a key. |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
42 // (*) If the KeyFile and the KeyName values are both specified, the |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
43 // following processing occurs: |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
44 // (1) If the KeyName can be found in the CSP, that key is used. |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
45 // (2) If the KeyName does not exist and the KeyFile does exist, the key |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
46 // in the KeyFile is installed into the CSP and used. |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
47 // (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility. |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
48 // When specifying the KeyFile, the location of the KeyFile should be |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
49 // relative to the project output directory which is |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
50 // %Project Directory%\obj\<configuration>. For example, if your KeyFile is |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
51 // located in the project directory, you would specify the AssemblyKeyFile |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
52 // attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
53 // (*) Delay Signing is an advanced option - see the Microsoft .NET Framework |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
54 // documentation for more information on this. |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
55 // |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
56 [assembly: AssemblyDelaySign(false)] |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
57 [assembly: AssemblyKeyFile("")] |
736ed6707589
Re #9 - migrate to Squish\n * Add SquishWrapper to SVN
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
58 [assembly: AssemblyKeyName("")] |