Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.7 KiB

  1. using System;
  2. using System.Reflection;
  3. using System.Runtime.CompilerServices;
  4. //
  5. // General Information about an assembly is controlled through the following
  6. // set of attributes. Change these attribute values to modify the information
  7. // associated with an assembly.
  8. //
  9. [assembly: AssemblyTitle("Microsoft.Uddi")]
  10. [assembly: AssemblyDescription("Assembly for processing Uddi SOAP messages")]
  11. [assembly: AssemblyConfiguration("")]
  12. [assembly: AssemblyCompany("Microsoft Corporation")]
  13. [assembly: AssemblyProduct("Uddi")]
  14. [assembly: AssemblyCopyright("")]
  15. [assembly: AssemblyTrademark("")]
  16. [assembly: AssemblyCulture("")]
  17. //
  18. // In order to sign your assembly you must specify a key to use. Refer to the
  19. // Microsoft .NET Framework documentation for more information on assembly signing.
  20. //
  21. // Use the attributes below to control which key is used for signing.
  22. //
  23. // Notes:
  24. // (*) If no key is specified - the assembly cannot be signed.
  25. // (*) KeyName refers to a key that has been installed in the Crypto Service
  26. // Provider (CSP) on your machine.
  27. // (*) If the key file and a key name attributes are both specified, the
  28. // following processing occurs:
  29. // (1) If the KeyName can be found in the CSP - that key is used.
  30. // (2) If the KeyName does not exist and the KeyFile does exist, the key
  31. // in the file is installed into the CSP and used.
  32. // (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
  33. // documentation for more information on this.
  34. //
  35. [assembly: AssemblyDelaySign(false)]
  36. [assembly: AssemblyKeyFile(@"..\..\sdk.snk")]
  37. [assembly: AssemblyKeyName("")]
  38. [assembly: CLSCompliantAttribute(true)]