]>
Commit | Line | Data |
---|---|---|
67c8f8a1 A |
1 | /* -*- Mode: C; tab-width: 4 -*- |
2 | * | |
7f0064bd A |
3 | * Copyright (c) 2003-2004 Apple Computer, Inc. All rights reserved. |
4 | * | |
67c8f8a1 A |
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 | |
7f0064bd | 8 | * |
67c8f8a1 | 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
7f0064bd | 10 | * |
67c8f8a1 A |
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 | |
7f0064bd | 15 | * limitations under the License. |
7f0064bd A |
16 | */ |
17 | ||
18 | #include "stdafx.h" | |
19 | #include "WinVersRes.h" | |
20 | ||
32bb7e43 | 21 | using namespace System; |
7f0064bd A |
22 | using namespace System::Reflection; |
23 | using namespace System::Runtime::CompilerServices; | |
32bb7e43 A |
24 | using namespace System::Runtime::InteropServices; |
25 | using namespace System::Security::Permissions; | |
7f0064bd A |
26 | |
27 | // | |
28 | // General Information about an assembly is controlled through the following | |
29 | // set of attributes. Change these attribute values to modify the information | |
30 | // associated with an assembly. | |
31 | // | |
32 | [assembly:AssemblyTitleAttribute("dnssd.NET")]; | |
33 | [assembly:AssemblyDescriptionAttribute(".NET wrapper for DNS-SD services")]; | |
34 | [assembly:AssemblyConfigurationAttribute("")]; | |
32bb7e43 | 35 | [assembly:AssemblyCompanyAttribute("Apple Inc.")]; |
7f0064bd | 36 | [assembly:AssemblyProductAttribute("")]; |
32bb7e43 | 37 | [assembly:AssemblyCopyrightAttribute("Apple Inc.")]; |
7f0064bd A |
38 | [assembly:AssemblyTrademarkAttribute("")]; |
39 | [assembly:AssemblyCultureAttribute("")]; | |
40 | ||
41 | // | |
42 | // Version information for an assembly consists of the following four values: | |
43 | // | |
44 | // Major Version | |
45 | // Minor Version | |
46 | // Build Number | |
47 | // Revision | |
48 | // | |
49 | // You can specify all the value or you can default the Revision and Build Numbers | |
50 | // by using the '*' as shown below: | |
51 | ||
52 | [assembly:AssemblyVersionAttribute(MASTER_PROD_VERS_STR2)]; | |
53 | ||
54 | // | |
55 | // In order to sign your assembly you must specify a key to use. Refer to the | |
56 | // Microsoft .NET Framework documentation for more information on assembly | |
57 | // signing. | |
58 | // | |
59 | // Use the attributes below to control which key is used for signing. | |
60 | // | |
61 | // Notes: | |
62 | // (*) If no key is specified, the assembly is not signed. | |
63 | // (*) KeyName refers to a key that has been installed in the Crypto Service | |
64 | // Provider (CSP) on your machine. KeyFile refers to a file which contains | |
65 | // a key. | |
66 | // (*) If the KeyFile and the KeyName values are both specified, the | |
67 | // following processing occurs: | |
68 | // (1) If the KeyName can be found in the CSP, that key is used. | |
69 | // (2) If the KeyName does not exist and the KeyFile does exist, the key | |
70 | // in the KeyFile is installed into the CSP and used. | |
71 | // (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) | |
72 | // utility | |
73 | // When specifying the KeyFile, the location of the KeyFile should be | |
74 | // relative to the project directory. | |
75 | // (*) Delay Signing is an advanced option - see the Microsoft .NET Framework | |
76 | // documentation for more information on this. | |
77 | // | |
78 | [assembly:AssemblyDelaySignAttribute(false)]; | |
79 | [assembly:AssemblyKeyFileAttribute("dnssd_NET.snk")]; | |
80 | [assembly:AssemblyKeyNameAttribute("")]; | |
32bb7e43 A |
81 | |
82 | [assembly:ComVisible(false)]; | |
83 | [assembly:CLSCompliantAttribute(true)]; | |
84 | [assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)]; |