]> git.saurik.com Git - apple/mdnsresponder.git/blob - Clients/DNSServiceBrowser.NET/AssemblyInfo.cs
mDNSResponder-108.tar.gz
[apple/mdnsresponder.git] / Clients / DNSServiceBrowser.NET / AssemblyInfo.cs
1 /*
2 * Copyright (c) 1997-2004 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
11 * file.
12 *
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22
23 Change History (most recent first):
24
25 $Log: AssemblyInfo.cs,v $
26 Revision 1.1 2004/07/19 07:54:24 shersche
27 Initial revision
28
29
30 */
31
32 using System.Reflection;
33 using System.Runtime.CompilerServices;
34
35 //
36 // General Information about an assembly is controlled through the following
37 // set of attributes. Change these attribute values to modify the information
38 // associated with an assembly.
39 //
40 [assembly: AssemblyTitle("")]
41 [assembly: AssemblyDescription("")]
42 [assembly: AssemblyConfiguration("")]
43 [assembly: AssemblyCompany("")]
44 [assembly: AssemblyProduct("")]
45 [assembly: AssemblyCopyright("")]
46 [assembly: AssemblyTrademark("")]
47 [assembly: AssemblyCulture("")]
48
49 //
50 // Version information for an assembly consists of the following four values:
51 //
52 // Major Version
53 // Minor Version
54 // Build Number
55 // Revision
56 //
57 // You can specify all the values or you can default the Revision and Build Numbers
58 // by using the '*' as shown below:
59
60 [assembly: AssemblyVersion("1.0.*")]
61
62 //
63 // In order to sign your assembly you must specify a key to use. Refer to the
64 // Microsoft .NET Framework documentation for more information on assembly signing.
65 //
66 // Use the attributes below to control which key is used for signing.
67 //
68 // Notes:
69 // (*) If no key is specified, the assembly is not signed.
70 // (*) KeyName refers to a key that has been installed in the Crypto Service
71 // Provider (CSP) on your machine. KeyFile refers to a file which contains
72 // a key.
73 // (*) If the KeyFile and the KeyName values are both specified, the
74 // following processing occurs:
75 // (1) If the KeyName can be found in the CSP, that key is used.
76 // (2) If the KeyName does not exist and the KeyFile does exist, the key
77 // in the KeyFile is installed into the CSP and used.
78 // (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
79 // When specifying the KeyFile, the location of the KeyFile should be
80 // relative to the project output directory which is
81 // %Project Directory%\obj\<configuration>. For example, if your KeyFile is
82 // located in the project directory, you would specify the AssemblyKeyFile
83 // attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
84 // (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
85 // documentation for more information on this.
86 //
87 [assembly: AssemblyDelaySign(false)]
88 [assembly: AssemblyKeyFile("")]
89 [assembly: AssemblyKeyName("")]