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.
17 Change History (most recent first):
19 $Log: AssemblyInfo.cs,v $
20 Revision 1.2 2006/08/14 23:23:58 cheshire
21 Re-licensed mDNSResponder daemon source code under Apache License, Version 2.0
23 Revision 1.1 2004/07/19 07:54:24 shersche
29 using System.Reflection;
30 using System.Runtime.CompilerServices;
33 // General Information about an assembly is controlled through the following
34 // set of attributes. Change these attribute values to modify the information
35 // associated with an assembly.
37 [assembly: AssemblyTitle("")]
38 [assembly: AssemblyDescription("")]
39 [assembly: AssemblyConfiguration("")]
40 [assembly: AssemblyCompany("")]
41 [assembly: AssemblyProduct("")]
42 [assembly: AssemblyCopyright("")]
43 [assembly: AssemblyTrademark("")]
44 [assembly: AssemblyCulture("")]
47 // Version information for an assembly consists of the following four values:
54 // You can specify all the values or you can default the Revision and Build Numbers
55 // by using the '*' as shown below:
57 [assembly: AssemblyVersion("1.0.*")]
60 // In order to sign your assembly you must specify a key to use. Refer to the
61 // Microsoft .NET Framework documentation for more information on assembly signing.
63 // Use the attributes below to control which key is used for signing.
66 // (*) If no key is specified, the assembly is not signed.
67 // (*) KeyName refers to a key that has been installed in the Crypto Service
68 // Provider (CSP) on your machine. KeyFile refers to a file which contains
70 // (*) If the KeyFile and the KeyName values are both specified, the
71 // following processing occurs:
72 // (1) If the KeyName can be found in the CSP, that key is used.
73 // (2) If the KeyName does not exist and the KeyFile does exist, the key
74 // in the KeyFile is installed into the CSP and used.
75 // (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
76 // When specifying the KeyFile, the location of the KeyFile should be
77 // relative to the project output directory which is
78 // %Project Directory%\obj\<configuration>. For example, if your KeyFile is
79 // located in the project directory, you would specify the AssemblyKeyFile
80 // attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
81 // (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
82 // documentation for more information on this.
84 [assembly: AssemblyDelaySign(false)]
85 [assembly: AssemblyKeyFile("")]
86 [assembly: AssemblyKeyName("")]