annotate src/zlib-1.2.8/contrib/dotzlib/DotZLib/AssemblyInfo.cs @ 148:b4bfdf10c4b3

Update Win64 capnp builds to v0.6
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 22 May 2017 18:56:49 +0100
parents 5b4145a0d408
children
rev   line source
cannam@128 1 using System.Reflection;
cannam@128 2 using System.Runtime.CompilerServices;
cannam@128 3
cannam@128 4 //
cannam@128 5 // General Information about an assembly is controlled through the following
cannam@128 6 // set of attributes. Change these attribute values to modify the information
cannam@128 7 // associated with an assembly.
cannam@128 8 //
cannam@128 9 [assembly: AssemblyTitle("DotZLib")]
cannam@128 10 [assembly: AssemblyDescription(".Net bindings for ZLib compression dll 1.2.x")]
cannam@128 11 [assembly: AssemblyConfiguration("")]
cannam@128 12 [assembly: AssemblyCompany("Henrik Ravn")]
cannam@128 13 [assembly: AssemblyProduct("")]
cannam@128 14 [assembly: AssemblyCopyright("(c) 2004 by Henrik Ravn")]
cannam@128 15 [assembly: AssemblyTrademark("")]
cannam@128 16 [assembly: AssemblyCulture("")]
cannam@128 17
cannam@128 18 //
cannam@128 19 // Version information for an assembly consists of the following four values:
cannam@128 20 //
cannam@128 21 // Major Version
cannam@128 22 // Minor Version
cannam@128 23 // Build Number
cannam@128 24 // Revision
cannam@128 25 //
cannam@128 26 // You can specify all the values or you can default the Revision and Build Numbers
cannam@128 27 // by using the '*' as shown below:
cannam@128 28
cannam@128 29 [assembly: AssemblyVersion("1.0.*")]
cannam@128 30
cannam@128 31 //
cannam@128 32 // In order to sign your assembly you must specify a key to use. Refer to the
cannam@128 33 // Microsoft .NET Framework documentation for more information on assembly signing.
cannam@128 34 //
cannam@128 35 // Use the attributes below to control which key is used for signing.
cannam@128 36 //
cannam@128 37 // Notes:
cannam@128 38 // (*) If no key is specified, the assembly is not signed.
cannam@128 39 // (*) KeyName refers to a key that has been installed in the Crypto Service
cannam@128 40 // Provider (CSP) on your machine. KeyFile refers to a file which contains
cannam@128 41 // a key.
cannam@128 42 // (*) If the KeyFile and the KeyName values are both specified, the
cannam@128 43 // following processing occurs:
cannam@128 44 // (1) If the KeyName can be found in the CSP, that key is used.
cannam@128 45 // (2) If the KeyName does not exist and the KeyFile does exist, the key
cannam@128 46 // in the KeyFile is installed into the CSP and used.
cannam@128 47 // (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
cannam@128 48 // When specifying the KeyFile, the location of the KeyFile should be
cannam@128 49 // relative to the project output directory which is
cannam@128 50 // %Project Directory%\obj\<configuration>. For example, if your KeyFile is
cannam@128 51 // located in the project directory, you would specify the AssemblyKeyFile
cannam@128 52 // attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
cannam@128 53 // (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
cannam@128 54 // documentation for more information on this.
cannam@128 55 //
cannam@128 56 [assembly: AssemblyDelaySign(false)]
cannam@128 57 [assembly: AssemblyKeyFile("")]
cannam@128 58 [assembly: AssemblyKeyName("")]