diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Client.config b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Client.config
index 35070f5467..00a0dad6c3 100644
--- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Client.config
+++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Client.config
@@ -5,7 +5,7 @@
@@ -30,4 +30,4 @@
-
\ No newline at end of file
+
diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Server.config b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Server.config
index 0faa5fc567..c5f5a0b653 100644
--- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Server.config
+++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Server.config
@@ -5,7 +5,7 @@
@@ -25,4 +25,4 @@
-
\ No newline at end of file
+
diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/BreakPointsPad.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/BreakPointsPad.cs
index 6a276bb208..5b9c74439f 100644
--- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/BreakPointsPad.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/BreakPointsPad.cs
@@ -15,7 +15,7 @@ using System.Diagnostics;
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop.Services;
-using DebuggerLibrary;
+using Debugger;
namespace ICSharpCode.SharpDevelop.Gui.Pads
{
@@ -91,7 +91,7 @@ namespace ICSharpCode.SharpDevelop.Gui.Pads
void BreakpointsListItemCheck(object sender, ItemCheckEventArgs e)
{
- DebuggerLibrary.Breakpoint breakpoint = breakpointsList.Items[e.Index].Tag as DebuggerLibrary.Breakpoint;
+ Debugger.Breakpoint breakpoint = breakpointsList.Items[e.Index].Tag as Debugger.Breakpoint;
if (breakpoint != null) {
breakpoint.Enabled = (e.NewValue == CheckState.Checked);
}
@@ -105,7 +105,7 @@ namespace ICSharpCode.SharpDevelop.Gui.Pads
breakpointsList.ItemCheck -= new ItemCheckEventHandler(BreakpointsListItemCheck);
breakpointsList.BeginUpdate();
breakpointsList.Items.Clear();
- foreach(DebuggerLibrary.Breakpoint b in debuggerCore.Breakpoints) {
+ foreach(Debugger.Breakpoint b in debuggerCore.Breakpoints) {
AddBreakpoint(new BreakpointEventArgs(debuggerCore, b));
}
breakpointsList.EndUpdate();
@@ -170,7 +170,7 @@ namespace ICSharpCode.SharpDevelop.Gui.Pads
void debuggerService_OnDebuggingResumed(object sender, DebuggerEventArgs e)
{
breakpointsList.BeginUpdate();
- foreach(DebuggerLibrary.Breakpoint b in debuggerCore.Breakpoints)
+ foreach(Debugger.Breakpoint b in debuggerCore.Breakpoints)
RefreshBreakpoint(this, new BreakpointEventArgs(debuggerCore, b));
breakpointsList.EndUpdate();
}
diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/CallStackPad.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/CallStackPad.cs
index 15b659e486..628772844d 100644
--- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/CallStackPad.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/CallStackPad.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -16,7 +16,7 @@ using System.Diagnostics;
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop.Services;
-using DebuggerLibrary;
+using Debugger;
namespace ICSharpCode.SharpDevelop.Gui.Pads
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/ExceptionHistoryPad.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/ExceptionHistoryPad.cs
index 0b6e33ed2f..42ab78ed52 100644
--- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/ExceptionHistoryPad.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/ExceptionHistoryPad.cs
@@ -15,7 +15,7 @@ using System.Diagnostics;
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop.Services;
-using DebuggerLibrary;
+using Debugger;
namespace ICSharpCode.SharpDevelop.Gui.Pads
{
@@ -88,7 +88,7 @@ namespace ICSharpCode.SharpDevelop.Gui.Pads
void ExceptionHistoryListItemActivate(object sender, EventArgs e)
{
- SourcecodeSegment nextStatement = ((DebuggerLibrary.Exception)(exceptionHistoryList.SelectedItems[0].Tag)).Location;
+ SourcecodeSegment nextStatement = ((Debugger.Exception)(exceptionHistoryList.SelectedItems[0].Tag)).Location;
if (nextStatement == null) {
return;
@@ -126,7 +126,7 @@ namespace ICSharpCode.SharpDevelop.Gui.Pads
exceptionHistoryList.BeginUpdate();
exceptionHistoryList.Items.Clear();
- foreach(DebuggerLibrary.Exception exception in debugger.ExceptionHistory) {
+ foreach(Debugger.Exception exception in debugger.ExceptionHistory) {
string location;
if (exception.Location != null) {
location = exception.Location.SourceFilename + ":" + exception.Location.StartLine;
diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/LoadedModulesPad.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/LoadedModulesPad.cs
index 1d642883ee..59b24818b3 100644
--- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/LoadedModulesPad.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/LoadedModulesPad.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -15,7 +15,7 @@ using System.Diagnostics;
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop.Services;
-using DebuggerLibrary;
+using Debugger;
namespace ICSharpCode.SharpDevelop.Gui.Pads
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/LocalVarPad.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/LocalVarPad.cs
index 5f02be3b10..2948f34900 100644
--- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/LocalVarPad.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/LocalVarPad.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -15,7 +15,7 @@ using System.Diagnostics;
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop.Services;
-using DebuggerLibrary;
+using Debugger;
using System.Collections.Generic;
namespace ICSharpCode.SharpDevelop.Gui.Pads
diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/RunningThreadsPad.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/RunningThreadsPad.cs
index 0154ca7a66..bab6f7110b 100644
--- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/RunningThreadsPad.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/RunningThreadsPad.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -16,7 +16,7 @@ using System.Diagnostics;
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop.Services;
-using DebuggerLibrary;
+using Debugger;
namespace ICSharpCode.SharpDevelop.Gui.Pads
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/VariableListItems/BaseClassItem.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/VariableListItems/BaseClassItem.cs
index 46766be377..a339d96167 100644
--- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/VariableListItems/BaseClassItem.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/VariableListItems/BaseClassItem.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -8,7 +8,7 @@
using System;
using System.Collections.Generic;
using System.Text;
-using DebuggerLibrary;
+using Debugger;
namespace ICSharpCode.SharpDevelop.Gui.Pads
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/VariableListItems/VariableItem.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/VariableListItems/VariableItem.cs
index 95b7c0a37b..bdcbbdf31a 100644
--- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/VariableListItems/VariableItem.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Pads/VariableListItems/VariableItem.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -9,7 +9,7 @@ using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
-using DebuggerLibrary;
+using Debugger;
namespace ICSharpCode.SharpDevelop.Gui.Pads
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/DynamicTreeDebuggerRow.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/DynamicTreeDebuggerRow.cs
index 7f102f9287..eba62c891c 100644
--- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/DynamicTreeDebuggerRow.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/DynamicTreeDebuggerRow.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -6,7 +6,7 @@
//
using System;
-using DebuggerLibrary;
+using Debugger;
using ICSharpCode.SharpDevelop.Gui.TreeGrid;
namespace ICSharpCode.SharpDevelop.Services
diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/ExceptionForm.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/ExceptionForm.cs
index 90e29cdf76..07842e2dd4 100644
--- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/ExceptionForm.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/ExceptionForm.cs
@@ -8,7 +8,7 @@
using System;
using System.Windows.Forms;
using ICSharpCode.Core;
-using DebuggerLibrary;
+using Debugger;
namespace ICSharpCode.SharpDevelop.Services
{
@@ -30,7 +30,7 @@ namespace ICSharpCode.SharpDevelop.Services
InitializeComponent();
}
- public static Result Show(DebuggerLibrary.Exception exception)
+ public static Result Show(Debugger.Exception exception)
{
ExceptionForm form = new ExceptionForm();
form.textBox.Text = "Exception " +
diff --git a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/WindowsDebugger.cs b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/WindowsDebugger.cs
index bf104d72a3..94bdfd202e 100644
--- a/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/WindowsDebugger.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.AddIn/Project/Src/Service/WindowsDebugger.cs
@@ -12,7 +12,7 @@ using System.Drawing;
using System.IO;
using System.Windows.Forms;
-using DebuggerLibrary;
+using Debugger;
using ICSharpCode.Core;
using System.CodeDom.Compiler;
@@ -42,7 +42,7 @@ namespace ICSharpCode.SharpDevelop.Services
bool isProcessRunningCache = false;
bool serviceInitialized = false;
- List exceptionHistory = new List();
+ List exceptionHistory = new List();
public event EventHandler ExceptionHistoryModified;
@@ -71,7 +71,7 @@ namespace ICSharpCode.SharpDevelop.Services
}
}
- public IList ExceptionHistory {
+ public IList ExceptionHistory {
get {
return exceptionHistory.AsReadOnly();
}
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/Breakpoint.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/Breakpoint.cs
index d5df305d7a..5c7d9a2bca 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/Breakpoint.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/Breakpoint.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -12,7 +12,7 @@ using System.Runtime.InteropServices;
using DebuggerInterop.Core;
-namespace DebuggerLibrary
+namespace Debugger
{
public class Breakpoint: RemotingObjectBase
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/BreakpointEventArgs.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/BreakpointEventArgs.cs
index 6acbc71393..563466031f 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/BreakpointEventArgs.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/BreakpointEventArgs.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -7,7 +7,7 @@
using System;
-namespace DebuggerLibrary
+namespace Debugger
{
[Serializable]
public class BreakpointEventArgs : DebuggerEventArgs
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/NDebugger-Breakpoints.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/NDebugger-Breakpoints.cs
index 11909d9085..9d2199e623 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/NDebugger-Breakpoints.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/NDebugger-Breakpoints.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -12,7 +12,7 @@ using System.Collections.Generic;
using DebuggerInterop.Core;
using DebuggerInterop.MetaData;
-namespace DebuggerLibrary
+namespace Debugger
{
public partial class NDebugger
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/DebuggerEventArgs.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/DebuggerEventArgs.cs
index cba25b0cac..10060ca856 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/DebuggerEventArgs.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/DebuggerEventArgs.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -7,7 +7,7 @@
using System;
-namespace DebuggerLibrary
+namespace Debugger
{
[Serializable]
public class DebuggerEventArgs : EventArgs
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/DebuggingIsResumingEventArgs.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/DebuggingIsResumingEventArgs.cs
index ba077a0599..911950c43c 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/DebuggingIsResumingEventArgs.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/DebuggingIsResumingEventArgs.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -7,7 +7,7 @@
using System;
-namespace DebuggerLibrary
+namespace Debugger
{
[Serializable]
public class DebuggingIsResumingEventArgs : DebuggerEventArgs
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/DebuggingPausedEventArgs.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/DebuggingPausedEventArgs.cs
index d87ca65dec..5063cee0e0 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/DebuggingPausedEventArgs.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/DebuggingPausedEventArgs.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -7,7 +7,7 @@
using System;
-namespace DebuggerLibrary
+namespace Debugger
{
[Serializable]
public class DebuggingPausedEventArgs : DebuggerEventArgs
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/MessageEventArgs.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/MessageEventArgs.cs
index e211542e6f..287d54110f 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/MessageEventArgs.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/MessageEventArgs.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -7,7 +7,7 @@
using System;
-namespace DebuggerLibrary
+namespace Debugger
{
[Serializable]
public class MessageEventArgs : DebuggerEventArgs
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/PausedReason.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/PausedReason.cs
index 62963c609a..dd80d24340 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/PausedReason.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/PausedReason.cs
@@ -1,11 +1,11 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
// $Revision$
//
-namespace DebuggerLibrary
+namespace Debugger
{
public enum PausedReason:int
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Exceptions.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Exceptions.cs
index d2f9a8be41..7096b5ef6e 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Exceptions.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Exceptions.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -7,7 +7,7 @@
using System;
-namespace DebuggerLibrary
+namespace Debugger
{
public class DebuggerException: System.Exception
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/MTA2STA.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/MTA2STA.cs
index 17c414b98d..3e2c0a1098 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/MTA2STA.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/MTA2STA.cs
@@ -105,7 +105,7 @@ namespace DebuggerInterop.Core
outputParams[i] = null;
outputParams[i] = Marshal.GetTypedObjectForIUnknown((IntPtr)inputParams[i], outputParamsInfo[i].ParameterType);
} catch (System.Exception exception) {
- throw new DebuggerLibrary.DebuggerException("Marshaling of argument " + i.ToString() + " of " + functionName + " failed.", exception);
+ throw new Debugger.DebuggerException("Marshaling of argument " + i.ToString() + " of " + functionName + " failed.", exception);
}
}
} else {
@@ -123,7 +123,7 @@ namespace DebuggerInterop.Core
returnValue = method.Invoke(targetObject, outputParams);
}
} catch (System.Exception exception) {
- throw new DebuggerLibrary.DebuggerException("Invoke of " + functionName + " failed.", exception);
+ throw new Debugger.DebuggerException("Invoke of " + functionName + " failed.", exception);
}
TraceMsg ("} \\\\ Invoke");
return returnValue;
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallback.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallback.cs
index b008bb78ec..50a1491f31 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallback.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallback.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -17,7 +17,7 @@ using System.Runtime.InteropServices;
using DebuggerInterop.Core;
-namespace DebuggerLibrary
+namespace Debugger
{
class ManagedCallback
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackProxy.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackProxy.cs
index 68286c6700..2e9a66452f 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackProxy.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackProxy.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -20,7 +20,7 @@ using DebuggerInterop.Core;
// Replace with:
// \1\2\n\1{\n\1\tCallbackReceived("\3", new object[] {\4, \5, \6, \7, \8, \9});\n\1}
-namespace DebuggerLibrary
+namespace Debugger
{
class ManagedCallbackProxy :ICorDebugManagedCallback, ICorDebugManagedCallback2
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/NativeMethods.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/NativeMethods.cs
index 6707d47152..e8b4040248 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/NativeMethods.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/NativeMethods.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -13,7 +13,7 @@ using System.Text;
using DebuggerInterop.Core;
using DebuggerInterop.MetaData;
-namespace DebuggerLibrary
+namespace Debugger
{
internal static class NativeMethods
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/RemotingObjectBase.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/RemotingObjectBase.cs
index d457aab52f..ff3a93468c 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/RemotingObjectBase.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/RemotingObjectBase.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -10,7 +10,7 @@ using System.Collections.Generic;
using System.Text;
using CustomSinks;
-namespace DebuggerLibrary
+namespace Debugger
{
public class RemotingObjectBase: MarshalByRefObject
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/FieldProps.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/FieldProps.cs
index 8d850b2f91..ec6ae3dceb 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/FieldProps.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/FieldProps.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -9,7 +9,7 @@ using System;
using System.Collections.Generic;
using System.Text;
-namespace DebuggerLibrary
+namespace Debugger
{
struct FieldProps
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/MetaData.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/MetaData.cs
index 7138059c71..11c62cb19e 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/MetaData.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/MetaData.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -11,7 +11,7 @@ using System.Text;
using DebuggerInterop.MetaData;
using System.Runtime.InteropServices;
-namespace DebuggerLibrary
+namespace Debugger
{
class MetaData
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/MethodProps.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/MethodProps.cs
index f9ae0eb3f4..5083411a65 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/MethodProps.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/MethodProps.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -9,7 +9,7 @@ using System;
using System.Collections.Generic;
using System.Text;
-namespace DebuggerLibrary
+namespace Debugger
{
struct MethodProps
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/ParamProps.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/ParamProps.cs
index 80f71c794f..85b9074274 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/ParamProps.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/ParamProps.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -9,7 +9,7 @@ using System;
using System.Collections.Generic;
using System.Text;
-namespace DebuggerLibrary
+namespace Debugger
{
struct ParamProps
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/TypeDefProps.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/TypeDefProps.cs
index 9920b512ca..15461a7d5e 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/TypeDefProps.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/TypeDefProps.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -9,7 +9,7 @@ using System;
using System.Collections.Generic;
using System.Text;
-namespace DebuggerLibrary
+namespace Debugger
{
struct TypeDefProps
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/TypeRefProps.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/TypeRefProps.cs
index ff1fc7cccb..2b2af23252 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/TypeRefProps.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/MetaData/TypeRefProps.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -9,7 +9,7 @@ using System;
using System.Collections.Generic;
using System.Text;
-namespace DebuggerLibrary
+namespace Debugger
{
struct TypeRefProps
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/NDebugger-StateControl.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/NDebugger-StateControl.cs
index bead939516..364e2e05fa 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/NDebugger-StateControl.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/NDebugger-StateControl.cs
@@ -1,7 +1,7 @@
//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
-//
+//
// $Revision$
//
@@ -15,7 +15,7 @@ using DebuggerInterop.Core;
using DebuggerInterop.MetaData;
using System.Collections.Generic;
-namespace DebuggerLibrary
+namespace Debugger
{
public partial class NDebugger
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/NDebugger.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/NDebugger.cs
index f4ae8cfba4..d5ad99e1dd 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/NDebugger.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/NDebugger.cs
@@ -15,7 +15,7 @@ using DebuggerInterop.Core;
using DebuggerInterop.MetaData;
using System.Collections.Generic;
-namespace DebuggerLibrary
+namespace Debugger
{
public partial class NDebugger: RemotingObjectBase
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Interop enums/ClassFieldAttribute.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Interop enums/ClassFieldAttribute.cs
index 0073294b75..99fee34c23 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Interop enums/ClassFieldAttribute.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Interop enums/ClassFieldAttribute.cs
@@ -1,11 +1,11 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
// $Revision$
//
-namespace DebuggerLibrary
+namespace Debugger
{
[System.Flags()] enum ClassFieldAttribute: uint
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Interop enums/CorCallingConvention.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Interop enums/CorCallingConvention.cs
index 64180342ab..a7acf7430c 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Interop enums/CorCallingConvention.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Interop enums/CorCallingConvention.cs
@@ -1,11 +1,11 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
// $Revision$
//
-namespace DebuggerLibrary
+namespace Debugger
{
enum CorCallingConvention: uint
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Interop enums/CorElementType.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Interop enums/CorElementType.cs
index 011309aa3b..d873ce1eaa 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Interop enums/CorElementType.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Interop enums/CorElementType.cs
@@ -1,11 +1,11 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
// $Revision$
//
-namespace DebuggerLibrary
+namespace Debugger
{
enum CorElementType: uint
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Interop enums/CorMethodAttr.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Interop enums/CorMethodAttr.cs
index 9ba5d13ad5..c2f6d4e972 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Interop enums/CorMethodAttr.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Interop enums/CorMethodAttr.cs
@@ -1,11 +1,11 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
// $Revision$
//
-namespace DebuggerLibrary
+namespace Debugger
{
enum CorMethodAttr: uint
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Interop enums/CorTokenType.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Interop enums/CorTokenType.cs
index 784907c3ab..4e74fbd110 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Interop enums/CorTokenType.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Interop enums/CorTokenType.cs
@@ -1,11 +1,11 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
// $Revision$
//
-namespace DebuggerLibrary
+namespace Debugger
{
enum CorTokenType: uint
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/Module.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/Module.cs
index 8979d2b8c9..2fee426805 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/Module.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/Module.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -12,7 +12,7 @@ using System.Runtime.InteropServices;
using DebuggerInterop.Core;
using DebuggerInterop.MetaData;
-namespace DebuggerLibrary
+namespace Debugger
{
public class Module: RemotingObjectBase, IDisposable
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/ModuleEventArgs.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/ModuleEventArgs.cs
index 5b3c1283b9..9e9a0e7d8d 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/ModuleEventArgs.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/ModuleEventArgs.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -7,7 +7,7 @@
using System;
-namespace DebuggerLibrary
+namespace Debugger
{
[Serializable]
public class ModuleEventArgs : DebuggerEventArgs
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/NDebugger-Modules.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/NDebugger-Modules.cs
index baa68bbde7..89ce9b7a50 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/NDebugger-Modules.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/NDebugger-Modules.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -10,7 +10,7 @@ using System.Collections.Generic;
using DebuggerInterop.Core;
-namespace DebuggerLibrary
+namespace Debugger
{
public partial class NDebugger
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Exception.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Exception.cs
index 3cf37fe37e..f6e1cc0a3c 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Exception.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Exception.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -13,7 +13,7 @@ using System.Threading;
using DebuggerInterop.Core;
using DebuggerInterop.MetaData;
-namespace DebuggerLibrary
+namespace Debugger
{
public class Exception: RemotingObjectBase
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ExceptionType.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ExceptionType.cs
index 3957300903..4317c51466 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ExceptionType.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ExceptionType.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -9,7 +9,7 @@ using System;
using System.Runtime.InteropServices;
using System.Threading;
-namespace DebuggerLibrary
+namespace Debugger
{
public enum ExceptionType
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Function.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Function.cs
index e2a715424a..18a2323d4f 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Function.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Function.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -15,7 +15,7 @@ using DebuggerInterop.MetaData;
using System.Collections.Generic;
-namespace DebuggerLibrary
+namespace Debugger
{
public class Function: RemotingObjectBase
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/NDebugger-Processes.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/NDebugger-Processes.cs
index 9752c335b1..1f15e26192 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/NDebugger-Processes.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/NDebugger-Processes.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -10,7 +10,7 @@ using System.Collections.Generic;
using System.Text;
using DebuggerInterop.Core;
-namespace DebuggerLibrary
+namespace Debugger
{
public partial class NDebugger
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/NDebugger-Threads.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/NDebugger-Threads.cs
index a107c42b64..c114ec937f 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/NDebugger-Threads.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/NDebugger-Threads.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -10,7 +10,7 @@ using System.Collections.Generic;
using DebuggerInterop.Core;
-namespace DebuggerLibrary
+namespace Debugger
{
public partial class NDebugger
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Process.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Process.cs
index 78e6e58eba..f754dd2e22 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Process.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Process.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -13,7 +13,7 @@ using System.Threading;
using DebuggerInterop.Core;
using DebuggerInterop.MetaData;
-namespace DebuggerLibrary
+namespace Debugger
{
public class Process: RemotingObjectBase
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ProcessEventArgs.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ProcessEventArgs.cs
index 1cc34a2f1b..840770bcd9 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ProcessEventArgs.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ProcessEventArgs.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -7,7 +7,7 @@
using System;
-namespace DebuggerLibrary
+namespace Debugger
{
[Serializable]
public class ProcessEventArgs: DebuggerEventArgs
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/SourcecodeSegment.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/SourcecodeSegment.cs
index 91248ef2d0..1c855f2888 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/SourcecodeSegment.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/SourcecodeSegment.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -10,7 +10,7 @@ using System.Diagnostics.SymbolStore;
using DebuggerInterop.Core;
-namespace DebuggerLibrary
+namespace Debugger
{
[Serializable]
public class SourcecodeSegment
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Thread.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Thread.cs
index faaf300741..a0c67b3dd8 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Thread.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Thread.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -13,7 +13,7 @@ using System.Threading;
using DebuggerInterop.Core;
using DebuggerInterop.MetaData;
-namespace DebuggerLibrary
+namespace Debugger
{
public partial class Thread: RemotingObjectBase
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ThreadEventArgs.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ThreadEventArgs.cs
index 06f42b55c9..443709da96 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ThreadEventArgs.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ThreadEventArgs.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -7,7 +7,7 @@
using System;
-namespace DebuggerLibrary
+namespace Debugger
{
[Serializable]
public class ThreadEventArgs : DebuggerEventArgs
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ArrayVariable.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ArrayVariable.cs
index 31f147aa0f..2e77b14f8e 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ArrayVariable.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ArrayVariable.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -13,7 +13,7 @@ using DebuggerInterop.Core;
//TODO: Support for lower bound
-namespace DebuggerLibrary
+namespace Debugger
{
public class ArrayVariable: Variable
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/BuiltInVariable.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/BuiltInVariable.cs
index 18d8b522af..6ab7a75a52 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/BuiltInVariable.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/BuiltInVariable.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
using DebuggerInterop.Core;
-namespace DebuggerLibrary
+namespace Debugger
{
public class BuiltInVariable: Variable
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/CorDebugEvalEventArgs.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/CorDebugEvalEventArgs.cs
index 2eacda4a35..a3b060d4a3 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/CorDebugEvalEventArgs.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/CorDebugEvalEventArgs.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -8,7 +8,7 @@
using System;
using DebuggerInterop.Core;
-namespace DebuggerLibrary
+namespace Debugger
{
[Serializable]
class CorDebugEvalEventArgs : DebuggerEventArgs
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/Eval.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/Eval.cs
index 10b52e39dd..e118d55271 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/Eval.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/Eval.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -12,7 +12,7 @@ using System.Runtime.InteropServices;
using DebuggerInterop.Core;
using DebuggerInterop.MetaData;
-namespace DebuggerLibrary
+namespace Debugger
{
class Eval
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/EvalQueue.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/EvalQueue.cs
index f10d0509f7..0552ffa89f 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/EvalQueue.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Evals/EvalQueue.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -12,7 +12,7 @@ using System.Runtime.InteropServices;
using DebuggerInterop.Core;
using DebuggerInterop.MetaData;
-namespace DebuggerLibrary
+namespace Debugger
{
class EvalQueue
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/NullRefVariable.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/NullRefVariable.cs
index 4cf50d1517..8cadb2cd1a 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/NullRefVariable.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/NullRefVariable.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
using DebuggerInterop.Core;
-namespace DebuggerLibrary
+namespace Debugger
{
public class NullRefVariable: Variable
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ObjectVariable.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ObjectVariable.cs
index c111b84d55..697f2e0e05 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ObjectVariable.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ObjectVariable.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -13,7 +13,7 @@ using System.Runtime.InteropServices;
using DebuggerInterop.Core;
using DebuggerInterop.MetaData;
-namespace DebuggerLibrary
+namespace Debugger
{
public class ObjectVariable: Variable
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/PropertyVariable.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/PropertyVariable.cs
index 429d819225..298cbc7ae1 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/PropertyVariable.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/PropertyVariable.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -9,7 +9,7 @@ using System;
using DebuggerInterop.Core;
-namespace DebuggerLibrary
+namespace Debugger
{
public class PropertyVariable: Variable
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/SignatureStream.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/SignatureStream.cs
index c139ef5795..267c8df512 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/SignatureStream.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/SignatureStream.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -8,7 +8,7 @@
using System;
using System.Runtime.InteropServices;
-namespace DebuggerLibrary {
+namespace Debugger {
unsafe class SignatureStream {
byte[] signature;
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/UnavailableVariable.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/UnavailableVariable.cs
index 564a37cdd1..b2062bc4ce 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/UnavailableVariable.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/UnavailableVariable.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
using DebuggerInterop.Core;
-namespace DebuggerLibrary
+namespace Debugger
{
public class UnavailableVariable: Variable
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/UnknownVariable.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/UnknownVariable.cs
index 96b947aebc..a105360821 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/UnknownVariable.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/UnknownVariable.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
using DebuggerInterop.Core;
-namespace DebuggerLibrary
+namespace Debugger
{
public class UnknownVariable: Variable
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Variable.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Variable.cs
index e3bf1d60cd..3bf54bec92 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Variable.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/Variable.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
using DebuggerInterop.Core;
-namespace DebuggerLibrary
+namespace Debugger
{
public abstract class Variable: RemotingObjectBase
{
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/VariableCollection.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/VariableCollection.cs
index 20fa65f982..4645ac6008 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/VariableCollection.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/VariableCollection.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -10,7 +10,7 @@ using System.Collections;
using DebuggerInterop.Core;
-namespace DebuggerLibrary
+namespace Debugger
{
[Serializable]
public class VariableCollection: ReadOnlyCollectionBase
diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/VariableFactory.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/VariableFactory.cs
index f030ce6a3d..2f9dc45e12 100644
--- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/VariableFactory.cs
+++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/VariableFactory.cs
@@ -1,4 +1,4 @@
-//
+//
// 2002-2005 AlphaSierraPapa
// GNU General Public License
//
@@ -9,7 +9,7 @@ using System;
using DebuggerInterop.Core;
-namespace DebuggerLibrary
+namespace Debugger
{
static class VariableFactory
{