AssemblyInfo.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Reflection;
  3. using System.Resources;
  4. using System.Runtime.InteropServices;
  5. using System.Security;
  6. [assembly: AssemblyTitle("System.Interactive")]
  7. // Notice: same description as in the .nuspec files; see Source/Interactive Extensions/Setup/NuGet
  8. [assembly: AssemblyDescription("Interactive Extensions Main Library used to express queries over enumerable sequences.")]
  9. #if DEBUG
  10. [assembly: AssemblyConfiguration("Debug")]
  11. #else
  12. [assembly: AssemblyConfiguration("Retail")]
  13. #endif
  14. [assembly: AssemblyCompany("Microsoft Corporation")]
  15. #if STABLE
  16. [assembly: AssemblyProduct("Interactive Extensions")]
  17. #else
  18. [assembly: AssemblyProduct("Interactive Extensions")]
  19. #endif
  20. [assembly: AssemblyCopyright("\x00a9 Microsoft Corporation. All rights reserved.")]
  21. [assembly: NeutralResourcesLanguage("en-US")]
  22. #if !PLIB
  23. [assembly: ComVisible(false)]
  24. #endif
  25. [assembly: CLSCompliant(true)]
  26. #if DESKTOPCLR && NO_CODECOVERAGE
  27. [assembly: AllowPartiallyTrustedCallers]
  28. #endif
  29. //
  30. // Note: Assembly (file) version numbers get inserted by the build system on the fly. Inspect the Team Build workflows
  31. // and the custom activity in Build/Source/Activities/AppendVersionInfo.cs for more information.
  32. //