]> git.saurik.com Git - apple/mdnsresponder.git/blob - mDNSWindows/DLL.NET/AssemblyInfo.cpp
d99c8ab72246f81d20f03601100bc3ca9c5f970c
[apple/mdnsresponder.git] / mDNSWindows / DLL.NET / AssemblyInfo.cpp
1 /* -*- Mode: C; tab-width: 4 -*-
2 *
3 * Copyright (c) 2003-2004 Apple Computer, Inc. All rights reserved.
4 *
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
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
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.
16
17 Change History (most recent first):
18
19 $Log: AssemblyInfo.cpp,v $
20 Revision 1.6 2009/03/30 20:16:27 herscher
21 <rdar://problem/5925472> Current Bonjour code does not compile on Windows
22 <rdar://problem/5187308> Move build train to Visual Studio 2005
23
24 Revision 1.5 2006/08/14 23:25:43 cheshire
25 Re-licensed mDNSResponder daemon source code under Apache License, Version 2.0
26
27 Revision 1.4 2004/07/26 21:03:00 shersche
28 enable strong naming for dnssd.NET assembly
29
30 Revision 1.3 2004/07/14 19:54:57 shersche
31 use version file to get version numbers
32
33 Revision 1.2 2004/07/14 15:42:47 shersche
34 remove entries for strong authentication
35
36 Revision 1.1 2004/06/26 04:01:22 shersche
37 Initial revision
38
39
40 */
41
42 #include "stdafx.h"
43 #include "WinVersRes.h"
44
45 using namespace System;
46 using namespace System::Reflection;
47 using namespace System::Runtime::CompilerServices;
48 using namespace System::Runtime::InteropServices;
49 using namespace System::Security::Permissions;
50
51 //
52 // General Information about an assembly is controlled through the following
53 // set of attributes. Change these attribute values to modify the information
54 // associated with an assembly.
55 //
56 [assembly:AssemblyTitleAttribute("dnssd.NET")];
57 [assembly:AssemblyDescriptionAttribute(".NET wrapper for DNS-SD services")];
58 [assembly:AssemblyConfigurationAttribute("")];
59 [assembly:AssemblyCompanyAttribute("Apple Inc.")];
60 [assembly:AssemblyProductAttribute("")];
61 [assembly:AssemblyCopyrightAttribute("Apple Inc.")];
62 [assembly:AssemblyTrademarkAttribute("")];
63 [assembly:AssemblyCultureAttribute("")];
64
65 //
66 // Version information for an assembly consists of the following four values:
67 //
68 // Major Version
69 // Minor Version
70 // Build Number
71 // Revision
72 //
73 // You can specify all the value or you can default the Revision and Build Numbers
74 // by using the '*' as shown below:
75
76 [assembly:AssemblyVersionAttribute(MASTER_PROD_VERS_STR2)];
77
78 //
79 // In order to sign your assembly you must specify a key to use. Refer to the
80 // Microsoft .NET Framework documentation for more information on assembly
81 // signing.
82 //
83 // Use the attributes below to control which key is used for signing.
84 //
85 // Notes:
86 // (*) If no key is specified, the assembly is not signed.
87 // (*) KeyName refers to a key that has been installed in the Crypto Service
88 // Provider (CSP) on your machine. KeyFile refers to a file which contains
89 // a key.
90 // (*) If the KeyFile and the KeyName values are both specified, the
91 // following processing occurs:
92 // (1) If the KeyName can be found in the CSP, that key is used.
93 // (2) If the KeyName does not exist and the KeyFile does exist, the key
94 // in the KeyFile is installed into the CSP and used.
95 // (*) In order to create a KeyFile, you can use the sn.exe (Strong Name)
96 // utility
97 // When specifying the KeyFile, the location of the KeyFile should be
98 // relative to the project directory.
99 // (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
100 // documentation for more information on this.
101 //
102 [assembly:AssemblyDelaySignAttribute(false)];
103 [assembly:AssemblyKeyFileAttribute("dnssd_NET.snk")];
104 [assembly:AssemblyKeyNameAttribute("")];
105
106 [assembly:ComVisible(false)];
107 [assembly:CLSCompliantAttribute(true)];
108 [assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)];