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