00001 #include "stdafx.h" 00002 00003 using namespace System::Reflection; 00004 using namespace System::Runtime::CompilerServices; 00005 00006 // 00007 // General Information about an assembly is controlled through the following 00008 // set of attributes. Change these attribute values to modify the information 00009 // associated with an assembly. 00010 // 00011 [assembly:AssemblyTitleAttribute("")]; 00012 [assembly:AssemblyDescriptionAttribute("")]; 00013 [assembly:AssemblyConfigurationAttribute("")]; 00014 [assembly:AssemblyCompanyAttribute("")]; 00015 [assembly:AssemblyProductAttribute("")]; 00016 [assembly:AssemblyCopyrightAttribute("")]; 00017 [assembly:AssemblyTrademarkAttribute("")]; 00018 [assembly:AssemblyCultureAttribute("")]; 00019 00020 // 00021 // Version information for an assembly consists of the following four values: 00022 // 00023 // Major Version 00024 // Minor Version 00025 // Build Number 00026 // Revision 00027 // 00028 // You can specify all the value or you can default the Revision and Build Numbers 00029 // by using the '*' as shown below: 00030 00031 [assembly:AssemblyVersionAttribute("1.0.*")]; 00032 00033 // 00034 // In order to sign your assembly you must specify a key to use. Refer to the 00035 // Microsoft .NET Framework documentation for more information on assembly signing. 00036 // 00037 // Use the attributes below to control which key is used for signing. 00038 // 00039 // Notes: 00040 // (*) If no key is specified, the assembly is not signed. 00041 // (*) KeyName refers to a key that has been installed in the Crypto Service 00042 // Provider (CSP) on your machine. KeyFile refers to a file which contains 00043 // a key. 00044 // (*) If the KeyFile and the KeyName values are both specified, the 00045 // following processing occurs: 00046 // (1) If the KeyName can be found in the CSP, that key is used. 00047 // (2) If the KeyName does not exist and the KeyFile does exist, the key 00048 // in the KeyFile is installed into the CSP and used. 00049 // (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility. 00050 // When specifying the KeyFile, the location of the KeyFile should be 00051 // relative to the project directory. 00052 // (*) Delay Signing is an advanced option - see the Microsoft .NET Framework 00053 // documentation for more information on this. 00054 // 00055 [assembly:AssemblyDelaySignAttribute(false)]; 00056 [assembly:AssemblyKeyFileAttribute("")]; 00057 [assembly:AssemblyKeyNameAttribute("")]; 00058