annotate src/zlib-1.2.8/contrib/dotzlib/DotZLib/AssemblyInfo.cs @ 83:ae30d91d2ffe

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