sl@0: using System.Reflection; sl@0: using System.Runtime.CompilerServices; sl@0: sl@0: // sl@0: // General Information about an assembly is controlled through the following sl@0: // set of attributes. Change these attribute values to modify the information sl@0: // associated with an assembly. sl@0: // sl@0: [assembly: AssemblyTitle("")] sl@0: [assembly: AssemblyDescription("")] sl@0: [assembly: AssemblyConfiguration("")] sl@0: [assembly: AssemblyCompany("")] sl@0: [assembly: AssemblyProduct("")] sl@0: [assembly: AssemblyCopyright("")] sl@0: [assembly: AssemblyTrademark("")] sl@0: [assembly: AssemblyCulture("")] sl@0: sl@0: // sl@0: // Version information for an assembly consists of the following four values: sl@0: // sl@0: // Major Version sl@0: // Minor Version sl@0: // Build Number sl@0: // Revision sl@0: // sl@0: // You can specify all the values or you can default the Revision and Build Numbers sl@0: // by using the '*' as shown below: sl@0: sl@0: [assembly: AssemblyVersion("1.0.*")] sl@0: sl@0: // sl@0: // In order to sign your assembly you must specify a key to use. Refer to the sl@0: // Microsoft .NET Framework documentation for more information on assembly signing. sl@0: // sl@0: // Use the attributes below to control which key is used for signing. sl@0: // sl@0: // Notes: sl@0: // (*) If no key is specified, the assembly is not signed. sl@0: // (*) KeyName refers to a key that has been installed in the Crypto Service sl@0: // Provider (CSP) on your machine. KeyFile refers to a file which contains sl@0: // a key. sl@0: // (*) If the KeyFile and the KeyName values are both specified, the sl@0: // following processing occurs: sl@0: // (1) If the KeyName can be found in the CSP, that key is used. sl@0: // (2) If the KeyName does not exist and the KeyFile does exist, the key sl@0: // in the KeyFile is installed into the CSP and used. sl@0: // (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility. sl@0: // When specifying the KeyFile, the location of the KeyFile should be sl@0: // relative to the project output directory which is sl@0: // %Project Directory%\obj\. For example, if your KeyFile is sl@0: // located in the project directory, you would specify the AssemblyKeyFile sl@0: // attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] sl@0: // (*) Delay Signing is an advanced option - see the Microsoft .NET Framework sl@0: // documentation for more information on this. sl@0: // sl@0: [assembly: AssemblyDelaySign(false)] sl@0: [assembly: AssemblyKeyFile("")] sl@0: [assembly: AssemblyKeyName("")]