]> git.saurik.com Git - apple/mdnsresponder.git/blame - mDNSWindows/DLL.NET/AssemblyInfo.cpp
mDNSResponder-108.6.tar.gz
[apple/mdnsresponder.git] / mDNSWindows / DLL.NET / AssemblyInfo.cpp
CommitLineData
c9d2d929 1/*
7f0064bd
A
2 * Copyright (c) 2003-2004 Apple Computer, Inc. All rights reserved.
3 *
c9d2d929 4 * @APPLE_LICENSE_HEADER_START@
7f0064bd 5 *
c9d2d929
A
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.
7f0064bd 12 *
c9d2d929
A
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
7f0064bd 19 * limitations under the License.
c9d2d929
A
20 *
21 * @APPLE_LICENSE_HEADER_END@
7f0064bd
A
22
23 Change History (most recent first):
24
25$Log: AssemblyInfo.cpp,v $
26Revision 1.4 2004/07/26 21:03:00 shersche
27enable strong naming for dnssd.NET assembly
28
29Revision 1.3 2004/07/14 19:54:57 shersche
30use version file to get version numbers
31
32Revision 1.2 2004/07/14 15:42:47 shersche
33remove entries for strong authentication
34
35Revision 1.1 2004/06/26 04:01:22 shersche
36Initial revision
37
38
39 */
40
41#include "stdafx.h"
42#include "WinVersRes.h"
43
44using namespace System::Reflection;
45using namespace System::Runtime::CompilerServices;
46
47//
48// General Information about an assembly is controlled through the following
49// set of attributes. Change these attribute values to modify the information
50// associated with an assembly.
51//
52[assembly:AssemblyTitleAttribute("dnssd.NET")];
53[assembly:AssemblyDescriptionAttribute(".NET wrapper for DNS-SD services")];
54[assembly:AssemblyConfigurationAttribute("")];
55[assembly:AssemblyCompanyAttribute("Apple Computer, Inc.")];
56[assembly:AssemblyProductAttribute("")];
57[assembly:AssemblyCopyrightAttribute("Apple Computer, Inc.")];
58[assembly:AssemblyTrademarkAttribute("")];
59[assembly:AssemblyCultureAttribute("")];
60
61//
62// Version information for an assembly consists of the following four values:
63//
64// Major Version
65// Minor Version
66// Build Number
67// Revision
68//
69// You can specify all the value or you can default the Revision and Build Numbers
70// by using the '*' as shown below:
71
72[assembly:AssemblyVersionAttribute(MASTER_PROD_VERS_STR2)];
73
74//
75// In order to sign your assembly you must specify a key to use. Refer to the
76// Microsoft .NET Framework documentation for more information on assembly
77// signing.
78//
79// Use the attributes below to control which key is used for signing.
80//
81// Notes:
82// (*) If no key is specified, the assembly is not signed.
83// (*) KeyName refers to a key that has been installed in the Crypto Service
84// Provider (CSP) on your machine. KeyFile refers to a file which contains
85// a key.
86// (*) If the KeyFile and the KeyName values are both specified, the
87// following processing occurs:
88// (1) If the KeyName can be found in the CSP, that key is used.
89// (2) If the KeyName does not exist and the KeyFile does exist, the key
90// in the KeyFile is installed into the CSP and used.
91// (*) In order to create a KeyFile, you can use the sn.exe (Strong Name)
92// utility
93// When specifying the KeyFile, the location of the KeyFile should be
94// relative to the project directory.
95// (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
96// documentation for more information on this.
97//
98[assembly:AssemblyDelaySignAttribute(false)];
99[assembly:AssemblyKeyFileAttribute("dnssd_NET.snk")];
100[assembly:AssemblyKeyNameAttribute("")];