AssemblyInfo.cs 1.1 KB

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Reflection;
  3. using System.Resources;
  4. using System.Runtime.InteropServices;
  5. [assembly: AssemblyTitle("Microsoft.Reactive.Testing")]
  6. [assembly: AssemblyDescription("Reactive Extensions Testing Library used to write unit tests for queries and custom operators over observable sequences.")]
  7. #if DEBUG
  8. [assembly: AssemblyConfiguration("Debug")]
  9. #else
  10. [assembly: AssemblyConfiguration("Retail")]
  11. #endif
  12. [assembly: AssemblyCompany(".NET Foundation and Contributors.")]
  13. [assembly: AssemblyProduct("Reactive Extensions")]
  14. [assembly: AssemblyCopyright("\x00a9 .NET Foundation and Contributors. All rights reserved.")]
  15. [assembly: NeutralResourcesLanguage("en-US")]
  16. [assembly: ComVisible(false)]
  17. // ===========================================================================
  18. // DO NOT EDIT OR REMOVE ANYTHING BELOW THIS COMMENT.
  19. // Version numbers are automatically generated in the msbuild files based on regular expressions
  20. // ===========================================================================
  21. [assembly: AssemblyVersion("2.2.0.0")]
  22. [assembly: AssemblyFileVersion("2.2.0.0")]
  23. [assembly: AssemblyInformationalVersion("2.2.0.0")]