|
@@ -0,0 +1,36 @@
|
|
|
+using System;
|
|
|
+using System.Reflection;
|
|
|
+using System.Resources;
|
|
|
+using System.Runtime.InteropServices;
|
|
|
+using System.Security;
|
|
|
+
|
|
|
+[assembly: AssemblyTitle("System.Reactive.Observable.Aliases")]
|
|
|
+// Notice: same description as in the .nuspec files; see Source/Rx/Setup/NuGet
|
|
|
+[assembly: AssemblyDescription("Reactive Extensions provides the aliases Map, FlatMap, and Filter.")]
|
|
|
+#if DEBUG
|
|
|
+[assembly: AssemblyConfiguration("Debug")]
|
|
|
+#else
|
|
|
+[assembly: AssemblyConfiguration("Retail")]
|
|
|
+#endif
|
|
|
+[assembly: AssemblyCompany(".NET Foundation and Contributors.")]
|
|
|
+[assembly: AssemblyProduct("Reactive Extensions")]
|
|
|
+[assembly: AssemblyCopyright("\x00a9 .NET Foundation and Contributors. All rights reserved.")]
|
|
|
+[assembly: NeutralResourcesLanguage("en-US")]
|
|
|
+
|
|
|
+#if !PLIB
|
|
|
+[assembly: ComVisible(false)]
|
|
|
+#endif
|
|
|
+
|
|
|
+[assembly: CLSCompliant(true)]
|
|
|
+
|
|
|
+#if HAS_APTCA && NO_CODECOVERAGE
|
|
|
+[assembly: AllowPartiallyTrustedCallers]
|
|
|
+#endif
|
|
|
+
|
|
|
+// ===========================================================================
|
|
|
+// DO NOT EDIT OR REMOVE ANYTHING BELOW THIS COMMENT.
|
|
|
+// Version numbers are automatically generated in the msbuild files based on regular expressions
|
|
|
+// ===========================================================================
|
|
|
+
|
|
|
+[assembly: AssemblyFileVersion("2.2.0.0")]
|
|
|
+[assembly: AssemblyInformationalVersion("2.2.0.0")]
|