AssemblyInfo.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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(".NET Foundation and Contributors.")]
  15. [assembly: AssemblyProduct("Interactive Extensions")]
  16. [assembly: AssemblyCopyright("\x00a9 .NET Foundation and Contributors. All rights reserved.")]
  17. [assembly: NeutralResourcesLanguage("en-US")]
  18. #if !PLIB
  19. [assembly: ComVisible(false)]
  20. #endif
  21. [assembly: CLSCompliant(true)]
  22. #if HAS_APTCA && NO_CODECOVERAGE
  23. [assembly: AllowPartiallyTrustedCallers]
  24. #endif
  25. // ===========================================================================
  26. // DO NOT EDIT OR REMOVE ANYTHING BELOW THIS COMMENT.
  27. // Version numbers are automatically generated in the msbuild files based on regular expressions
  28. // ===========================================================================
  29. [assembly: AssemblyVersion("1.2.0.0")]
  30. [assembly: AssemblyFileVersion("1.2.0.0")]
  31. [assembly: AssemblyInformationalVersion("1.2.0.0")]