1
0

AssemblyInfo.cs 1.1 KB

12345678910111213141516171819202122232425262728293031
  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.WindowsRuntime")]
  7. // Notice: same description as in the .nuspec files; see Source/Rx/Setup/NuGet
  8. [assembly: AssemblyDescription("Windows Runtime extensions library for Rx. Contains scheduler functionality and various bridges for the Windows Runtime.")]
  9. #if DEBUG
  10. [assembly: AssemblyConfiguration("Debug")]
  11. #else
  12. [assembly: AssemblyConfiguration("Retail")]
  13. #endif
  14. [assembly: AssemblyCompany("Microsoft Open Technologies, Inc.")]
  15. [assembly: AssemblyProduct("Reactive Extensions")]
  16. [assembly: AssemblyCopyright("\x00a9 Microsoft Open Technologies, Inc. All rights reserved.")]
  17. [assembly: NeutralResourcesLanguage("en-US")]
  18. #if !PLIB
  19. [assembly: ComVisible(false)]
  20. #endif
  21. #if HAS_APTCA && NO_CODECOVERAGE
  22. [assembly: AllowPartiallyTrustedCallers]
  23. #endif
  24. //
  25. // Note: Assembly (file) version numbers get inserted by the build system on the fly. Inspect the Team Build workflows
  26. // and the custom activity in Build/Source/Activities/AppendVersionInfo.cs for more information.
  27. //