Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2008-10-20 11:49:40 +0400
committerAtsushi Eno <atsushieno@gmail.com>2008-10-20 11:49:40 +0400
commit7b8ca08adfbb964ac42340f983267b031d618eae (patch)
tree0436bbdcdc09558c6599c31821f75924ad728911 /mcs/class/Mono.Messaging/Assembly
parent7966931ae7007b00dc1b664331df719280ef66ba (diff)
import AMQP/Rabbit based implementation by Michael Barker (see r116493).
svn path=/branches/messaging-2008/mcs/; revision=116494
Diffstat (limited to 'mcs/class/Mono.Messaging/Assembly')
-rw-r--r--mcs/class/Mono.Messaging/Assembly/AssemblyInfo.cs71
-rw-r--r--mcs/class/Mono.Messaging/Assembly/ChangeLog3
2 files changed, 74 insertions, 0 deletions
diff --git a/mcs/class/Mono.Messaging/Assembly/AssemblyInfo.cs b/mcs/class/Mono.Messaging/Assembly/AssemblyInfo.cs
new file mode 100644
index 00000000000..c3011607d85
--- /dev/null
+++ b/mcs/class/Mono.Messaging/Assembly/AssemblyInfo.cs
@@ -0,0 +1,71 @@
+//
+// AssemblyInfo.cs
+//
+// Author:
+// Andreas Nahr (ClassDevelopment@A-SoftTech.com)
+//
+// (C) 2003 Ximian, Inc. http://www.ximian.com
+//
+
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using System;
+using System.Reflection;
+using System.Resources;
+using System.Security;
+using System.Diagnostics;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about the System.Messaging assembly
+
+[assembly: AssemblyTitle ("Mono.Messaging.dll")]
+[assembly: AssemblyDescription ("Mono.Messaging.dll")]
+[assembly: AssemblyDefaultAlias ("Mono.Messaging.dll")]
+
+[assembly: AssemblyCompany (Consts.MonoCompany)]
+[assembly: AssemblyProduct (Consts.MonoProduct)]
+[assembly: AssemblyCopyright (Consts.MonoCopyright)]
+[assembly: AssemblyVersion (Consts.FxVersion)]
+[assembly: SatelliteContractVersion (Consts.FxVersion)]
+[assembly: AssemblyInformationalVersion (Consts.FxFileVersion)]
+
+[assembly: NeutralResourcesLanguage ("en-US")]
+
+[assembly: ComVisible (false)]
+
+[assembly: CLSCompliant (true)]
+[assembly: AssemblyDelaySign (true)]
+[assembly: AssemblyKeyFile("../msfinal.pub")]
+
+#if NET_2_0
+ [assembly: AssemblyFileVersion (Consts.FxFileVersion)]
+ [assembly: CompilationRelaxations (CompilationRelaxations.NoStringInterning)]
+ [assembly: Debuggable (DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
+ [assembly: RuntimeCompatibility (WrapNonExceptionThrows = true)]
+#elif NET_1_1
+ [assembly: AssemblyTrademark ("")]
+ [assembly: AssemblyConfiguration ("")]
+#elif NET_1_0
+ [assembly: AssemblyTrademark ("")]
+ [assembly: AssemblyConfiguration ("")]
+#endif
diff --git a/mcs/class/Mono.Messaging/Assembly/ChangeLog b/mcs/class/Mono.Messaging/Assembly/ChangeLog
new file mode 100644
index 00000000000..ecfba67aff2
--- /dev/null
+++ b/mcs/class/Mono.Messaging/Assembly/ChangeLog
@@ -0,0 +1,3 @@
+2008-09-29 Michael Barker <mike@middlesoft.co.uk>
+
+ * AssemblyInfo.cs: New