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:
authorMarek Habersack <grendel@twistedcode.net>2008-03-01 02:49:18 +0300
committerMarek Habersack <grendel@twistedcode.net>2008-03-01 02:49:18 +0300
commit09c2c620cb69444ed4e9427d6e9e852351009e75 (patch)
treea76a100f2db095af2f6391be947a6a42334b1e78 /mcs/class/Mono.Web/Assembly
parent9a2bcff65d98f459abb62703a5666af8eda2bde0 (diff)
parent1ed304478602879e3d3788d12592841045c56c79 (diff)
2008-03-01 Marek Habersack <mhabersack@novell.com>
* HttpRuntime.cs: SettingsMappingManager has been moved to Mono.Web. 2008-03-01 Marek Habersack <mhabersack@novell.com> * WebConfigurationManager.cs: SettingsMappingManager has been moved to Mono.Web.dll 2008-03-01 Marek Habersack <mhabersack@novell.com> * Makefile: added a dependency on Mono.Web.dll * System.Web.dll.sources: removed SystemSettingsMapper public APIs and moved them to the Mono.Web assembly. 2008-03-01 Marek Habersack <mhabersack@novell.com> * AssemblyInfo.cs: added 2008-03-01 Marek Habersack <mhabersack@novell.com> * ISectionSettingsMapper.cs, MembershipSectionMapper.cs, RoleManagerSectionMapper.cs, SettingsMapping.cs, SettingsMappingManager.cs, SettingsMappingWhat.cs: moved to here from System.Web 2008-03-01 Marek Habersack <mhabersack@novell.com> * Mono.Web.dll.sources: added * Makefile: added svn path=/trunk/mcs/; revision=97035
Diffstat (limited to 'mcs/class/Mono.Web/Assembly')
-rw-r--r--mcs/class/Mono.Web/Assembly/AssemblyInfo.cs60
-rw-r--r--mcs/class/Mono.Web/Assembly/ChangeLog4
2 files changed, 64 insertions, 0 deletions
diff --git a/mcs/class/Mono.Web/Assembly/AssemblyInfo.cs b/mcs/class/Mono.Web/Assembly/AssemblyInfo.cs
new file mode 100644
index 00000000000..ce76bd34222
--- /dev/null
+++ b/mcs/class/Mono.Web/Assembly/AssemblyInfo.cs
@@ -0,0 +1,60 @@
+//
+// AssemblyInfo.cs
+//
+// Author:
+// Marek Habersack (mhabersack@novell.com)
+//
+// (C) 2008 Novell, Inc (http://novell.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.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+using System.Web.UI;
+
+// General Information about the System.Web assembly
+
+[assembly: AssemblyVersion (Consts.FxVersion)]
+[assembly: SatelliteContractVersion (Consts.FxVersion)]
+
+[assembly: AssemblyTitle("Mono.Web.dll")]
+[assembly: AssemblyDescription("Mono.Web.dll")]
+[assembly: AssemblyConfiguration("Development version")]
+[assembly: AssemblyCompany("MONO development team")]
+[assembly: AssemblyProduct("MONO CLI")]
+[assembly: AssemblyCopyright("(c) 2008 Various Authors")]
+[assembly: AssemblyTrademark("")]
+[assembly: CLSCompliant(false)]
+[assembly: ComVisible(false)]
+[assembly: AssemblyDefaultAlias("Mono.Web.dll")]
+[assembly: AssemblyInformationalVersion("0.0.0.1")]
+[assembly: NeutralResourcesLanguage("en-US")]
+
+[assembly: AllowPartiallyTrustedCallers()]
+[assembly: TagPrefix("System.Web.UI.WebControls", "asp")]
+[assembly: AssemblyDelaySign(true)]
+[assembly: AssemblyKeyFile("../msfinal.pub")]
diff --git a/mcs/class/Mono.Web/Assembly/ChangeLog b/mcs/class/Mono.Web/Assembly/ChangeLog
new file mode 100644
index 00000000000..bc992388f54
--- /dev/null
+++ b/mcs/class/Mono.Web/Assembly/ChangeLog
@@ -0,0 +1,4 @@
+2008-03-01 Marek Habersack <mhabersack@novell.com>
+
+ * AssemblyInfo.cs: added
+