AssemblyInfo.cs 1.4 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.Reactive.Experimental")]
  7. // Notice: same description as in the .nuspec files; see Source/Rx/Setup/NuGet
  8. [assembly: AssemblyDescription("Reactive Extensions Experimental Library containing unstable and infrequently used functionality.")]
  9. #if DEBUG
  10. [assembly: AssemblyConfiguration("Debug")]
  11. #else
  12. [assembly: AssemblyConfiguration("Retail")]
  13. #endif
  14. [assembly: AssemblyCompany("Microsoft Open Technologies, Inc.")]
  15. [assembly: System.Reactive.Experimental]
  16. [assembly: AssemblyProduct("Reactive Extensions")]
  17. [assembly: AssemblyCopyright("\x00a9 Microsoft Open Technologies, Inc. All rights reserved.")]
  18. [assembly: NeutralResourcesLanguage("en-US")]
  19. #if !PLIB
  20. [assembly: ComVisible(false)]
  21. #endif
  22. [assembly: CLSCompliant(true)]
  23. #if HAS_APTCA && NO_CODECOVERAGE
  24. [assembly: AllowPartiallyTrustedCallers]
  25. #endif
  26. // ===========================================================================
  27. // DO NOT EDIT OR REMOVE ANYTHING BELOW THIS COMMENT.
  28. // Version numbers are automatically generated in the msbuild files based on regular expressions
  29. // ===========================================================================
  30. [assembly: AssemblyVersion("2.2.0.0")]
  31. [assembly: AssemblyFileVersion("2.2.0.0")]
  32. [assembly: AssemblyInformationalVersion("2.2.0.0")]