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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@novell.com>2008-05-13 16:21:35 +0400
committerLluis Sanchez <lluis@novell.com>2008-05-13 16:21:35 +0400
commitb62aa5248c8e7827c8864bc9602475789f0b1455 (patch)
tree76df5ff3bb12decb647a2145ecf0939467b7757a /main/src/addins/MonoDevelop.Debugger/AssemblyInfo.cs
parentae4ff95c994281a98d528f83f4489c3d23ec73e5 (diff)
Moved debugger add-in into the main module, excluding all mdb-specific classes. The debugger service is now part of MD.Ide.
svn path=/trunk/monodevelop/; revision=103069
Diffstat (limited to 'main/src/addins/MonoDevelop.Debugger/AssemblyInfo.cs')
-rw-r--r--main/src/addins/MonoDevelop.Debugger/AssemblyInfo.cs51
1 files changed, 51 insertions, 0 deletions
diff --git a/main/src/addins/MonoDevelop.Debugger/AssemblyInfo.cs b/main/src/addins/MonoDevelop.Debugger/AssemblyInfo.cs
new file mode 100644
index 0000000000..3d1bab9eca
--- /dev/null
+++ b/main/src/addins/MonoDevelop.Debugger/AssemblyInfo.cs
@@ -0,0 +1,51 @@
+// AssemblyInfo.cs
+//
+// Author:
+// Lluis Sanchez Gual <lluis@novell.com>
+//
+// Copyright (c) 2008 Novell, Inc (http://www.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.Reflection;
+using System.Runtime.CompilerServices;
+
+// Information about this assembly is defined by the following attributes.
+// Change them to the values specific to your project.
+
+[assembly: AssemblyTitle("MonoDevelop.Debugger")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("")]
+[assembly: AssemblyCopyright("")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
+// If the build and revision are set to '*' they will be updated automatically.
+
+[assembly: AssemblyVersion("0.1.0.0")]
+
+// The following attributes are used to specify the signing key for the assembly,
+// if desired. See the Mono documentation for more information about signing.
+
+[assembly: AssemblyDelaySign(false)]
+[assembly: AssemblyKeyFile("")]