annotate src/zlib-1.2.7/contrib/dotzlib/DotZLib/AssemblyInfo.cs @ 169:223a55898ab9 tip default

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