AssemblyInfo.cpp
上传用户:sz0451
上传日期:2022-07-29
资源大小:256k
文件大小:2k
源码类别:

.net编程

开发平台:

Visual C++

  1. #include "stdafx.h"
  2. #using <mscorlib.dll>
  3. using namespace System::Reflection;
  4. using namespace System::Runtime::CompilerServices;
  5. //
  6. // General Information about an assembly is controlled through the following 
  7. // set of attributes. Change these attribute values to modify the information
  8. // associated with an assembly.
  9. //
  10. [assembly:AssemblyTitleAttribute("")];
  11. [assembly:AssemblyDescriptionAttribute("")];
  12. [assembly:AssemblyConfigurationAttribute("")];
  13. [assembly:AssemblyCompanyAttribute("")];
  14. [assembly:AssemblyProductAttribute("")];
  15. [assembly:AssemblyCopyrightAttribute("")];
  16. [assembly:AssemblyTrademarkAttribute("")];
  17. [assembly:AssemblyCultureAttribute("")];
  18. //
  19. // Version information for an assembly consists of the following four values:
  20. //
  21. //      Major Version
  22. //      Minor Version 
  23. //      Build Number
  24. //      Revision
  25. //
  26. // You can specify all the value or you can default the Revision and Build Numbers 
  27. // by using the '*' as shown below:
  28. [assembly:AssemblyVersionAttribute("1.0.*")];
  29. //
  30. // In order to sign your assembly you must specify a key to use. Refer to the 
  31. // Microsoft .NET Framework documentation for more information on assembly signing.
  32. //
  33. // Use the attributes below to control which key is used for signing. 
  34. //
  35. // Notes: 
  36. //   (*) If no key is specified, the assembly is not signed.
  37. //   (*) KeyName refers to a key that has been installed in the Crypto Service
  38. //       Provider (CSP) on your machine. KeyFile refers to a file which contains
  39. //       a key.
  40. //   (*) If the KeyFile and the KeyName values are both specified, the 
  41. //       following processing occurs:
  42. //       (1) If the KeyName can be found in the CSP, that key is used.
  43. //       (2) If the KeyName does not exist and the KeyFile does exist, the key 
  44. //           in the KeyFile is installed into the CSP and used.
  45. //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
  46. //        When specifying the KeyFile, the location of the KeyFile should be
  47. //        relative to the project directory.
  48. //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
  49. //       documentation for more information on this.
  50. //
  51. [assembly:AssemblyDelaySignAttribute(false)];
  52. [assembly:AssemblyKeyFileAttribute("")];
  53. [assembly:AssemblyKeyNameAttribute("")];