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 18 #include "stdafx.h" 19 #include "WinVersRes.h" 20 21 using namespace System; 22 using namespace System::Reflection; 23 using namespace System::Runtime::CompilerServices; 24 using namespace System::Runtime::InteropServices; 25 using namespace System::Security::Permissions; 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("")]; 35 [assembly:AssemblyCompanyAttribute("Apple Inc.")]; 36 [assembly:AssemblyProductAttribute("")]; 37 [assembly:AssemblyCopyrightAttribute("Apple Inc.")]; 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("")]; 81 82 [assembly:ComVisible(false)]; 83 [assembly:CLSCompliantAttribute(true)]; 84 [assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)]; 85