1 /* -*- Mode: C; tab-width: 4 -*-
 
   3  * Copyright (c) 1997-2004 Apple Computer, Inc. All rights reserved.
 
   5  * Licensed under the Apache License, Version 2.0 (the "License");
 
   6  * you may not use this file except in compliance with the License.
 
   7  * You may obtain a copy of the License at
 
   9  *     http://www.apache.org/licenses/LICENSE-2.0
 
  11  * Unless required by applicable law or agreed to in writing, software
 
  12  * distributed under the License is distributed on an "AS IS" BASIS,
 
  13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  14  * See the License for the specific language governing permissions and
 
  15  * limitations under the License.
 
  18 using System.Reflection;
 
  19 using System.Runtime.CompilerServices;
 
  22 // General Information about an assembly is controlled through the following 
 
  23 // set of attributes. Change these attribute values to modify the information
 
  24 // associated with an assembly.
 
  26 [assembly: AssemblyTitle("")]
 
  27 [assembly: AssemblyDescription("")]
 
  28 [assembly: AssemblyConfiguration("")]
 
  29 [assembly: AssemblyCompany("")]
 
  30 [assembly: AssemblyProduct("")]
 
  31 [assembly: AssemblyCopyright("")]
 
  32 [assembly: AssemblyTrademark("")]
 
  33 [assembly: AssemblyCulture("")]         
 
  36 // Version information for an assembly consists of the following four values:
 
  43 // You can specify all the values or you can default the Revision and Build Numbers 
 
  44 // by using the '*' as shown below:
 
  46 [assembly: AssemblyVersion("1.0.*")]
 
  49 // In order to sign your assembly you must specify a key to use. Refer to the 
 
  50 // Microsoft .NET Framework documentation for more information on assembly signing.
 
  52 // Use the attributes below to control which key is used for signing. 
 
  55 //   (*) If no key is specified, the assembly is not signed.
 
  56 //   (*) KeyName refers to a key that has been installed in the Crypto Service
 
  57 //       Provider (CSP) on your machine. KeyFile refers to a file which contains
 
  59 //   (*) If the KeyFile and the KeyName values are both specified, the 
 
  60 //       following processing occurs:
 
  61 //       (1) If the KeyName can be found in the CSP, that key is used.
 
  62 //       (2) If the KeyName does not exist and the KeyFile does exist, the key 
 
  63 //           in the KeyFile is installed into the CSP and used.
 
  64 //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
 
  65 //       When specifying the KeyFile, the location of the KeyFile should be
 
  66 //       relative to the project output directory which is
 
  67 //       %Project Directory%\obj\<configuration>. For example, if your KeyFile is
 
  68 //       located in the project directory, you would specify the AssemblyKeyFile 
 
  69 //       attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
 
  70 //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
 
  71 //       documentation for more information on this.
 
  73 [assembly: AssemblyDelaySign(false)]
 
  74 [assembly: AssemblyKeyFile("")]
 
  75 [assembly: AssemblyKeyName("")]