From 5b4edcbbafc025c6545f3a107a5b576c2d625118 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Srbeck=C3=BD?= Date: Sat, 19 Jan 2008 18:56:47 +0000 Subject: [PATCH] Reorganized file structure git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2893 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61 --- .../Project/Debugger.Core.csproj | 81 +++++++++---------- .../Project/Src/{Evals => Control}/Eval.cs | 0 .../Src/{Modules => Control}/Module.cs | 0 .../NDebugger-Breakpoints.cs | 0 .../NDebugger-Processes.cs | 0 .../Src/{Debugger => Control}/NDebugger.cs | 0 .../Src/{Evals => Control}/Process-Evals.cs | 0 .../{Modules => Control}/Process-Modules.cs | 0 .../Process-StateControl.cs | 0 .../{Threads => Control}/Process-Threads.cs | 0 .../Src/{Threads => Control}/Process.cs | 0 .../{Threads => Control}/ProcessEventArgs.cs | 0 .../Src/{Threads => Control}/StackFrame.cs | 0 .../Src/{Threads => Control}/Stepper.cs | 0 .../{Threads => Control}/StepperEventArgs.cs | 0 .../Src/{Threads => Control}/Thread.cs | 0 .../{Threads => Control}/ThreadEventArgs.cs | 0 .../{Breakpoints => Debugger}/Breakpoint.cs | 0 .../{Exceptions.cs => DebuggerException.cs} | 0 .../Src/{Threads => Debugger}/Exception.cs | 0 .../{Threads => Debugger}/ExceptionType.cs | 0 .../{DebuggerEvents => }/PausedReason.cs | 0 .../SourcecodeSegment.cs | 0 .../BreakpointEventArgs.cs | 0 .../DebuggerEventArgs.cs | 0 .../Src/{Evals => EventArgs}/EvalEventArgs.cs | 0 .../ExceptionEventArgs.cs | 0 .../MessageEventArgs.cs | 0 .../{Modules => EventArgs}/ModuleEventArgs.cs | 0 .../Src/{Debugger => }/Internal/MTA2STA.cs | 0 .../Internal/ManagedCallback.cs | 0 .../Internal/ManagedCallbackProxy.cs | 0 .../Internal/ManagedCallbackSwitch.cs | 0 .../{ => Internal}/Tests/ExpandAttribute.cs | 0 .../{ => Internal}/Tests/IgnoreAttribute.cs | 0 35 files changed, 39 insertions(+), 42 deletions(-) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Evals => Control}/Eval.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Modules => Control}/Module.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Breakpoints => Control}/NDebugger-Breakpoints.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Threads => Control}/NDebugger-Processes.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Debugger => Control}/NDebugger.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Evals => Control}/Process-Evals.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Modules => Control}/Process-Modules.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Debugger => Control}/Process-StateControl.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Threads => Control}/Process-Threads.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Threads => Control}/Process.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Threads => Control}/ProcessEventArgs.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Threads => Control}/StackFrame.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Threads => Control}/Stepper.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Threads => Control}/StepperEventArgs.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Threads => Control}/Thread.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Threads => Control}/ThreadEventArgs.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Breakpoints => Debugger}/Breakpoint.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/{Exceptions.cs => DebuggerException.cs} (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Threads => Debugger}/Exception.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Threads => Debugger}/ExceptionType.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/{DebuggerEvents => }/PausedReason.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Threads => Debugger}/SourcecodeSegment.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Breakpoints => EventArgs}/BreakpointEventArgs.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Debugger/DebuggerEvents => EventArgs}/DebuggerEventArgs.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Evals => EventArgs}/EvalEventArgs.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Debugger => EventArgs}/ExceptionEventArgs.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Debugger/DebuggerEvents => EventArgs}/MessageEventArgs.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Modules => EventArgs}/ModuleEventArgs.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Debugger => }/Internal/MTA2STA.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Debugger => }/Internal/ManagedCallback.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Debugger => }/Internal/ManagedCallbackProxy.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{Debugger => }/Internal/ManagedCallbackSwitch.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{ => Internal}/Tests/ExpandAttribute.cs (100%) rename src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/{ => Internal}/Tests/IgnoreAttribute.cs (100%) diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Debugger.Core.csproj b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Debugger.Core.csproj index 3cd0f47c75..5d5633068e 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Debugger.Core.csproj +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Debugger.Core.csproj @@ -40,27 +40,38 @@ - - - + + + + + + + + + + + + + + + + + - - - + - - + + - - - - - + - - - - + + + + + + + @@ -70,6 +81,12 @@ + + + + + + @@ -211,23 +228,6 @@ - - - - - - - - - - - - - - - - - @@ -383,22 +383,19 @@ - + - - - + + + - - - @@ -409,4 +406,4 @@ - + \ No newline at end of file diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Evals/Eval.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Eval.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Evals/Eval.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Eval.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/Module.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Module.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/Module.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Module.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/NDebugger-Breakpoints.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/NDebugger-Breakpoints.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/NDebugger-Breakpoints.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/NDebugger-Breakpoints.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/NDebugger-Processes.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/NDebugger-Processes.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/NDebugger-Processes.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/NDebugger-Processes.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/NDebugger.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/NDebugger.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/NDebugger.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/NDebugger.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Evals/Process-Evals.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Process-Evals.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Evals/Process-Evals.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Process-Evals.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/Process-Modules.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Process-Modules.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/Process-Modules.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Process-Modules.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Process-StateControl.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Process-StateControl.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Process-StateControl.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Process-StateControl.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Process-Threads.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Process-Threads.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Process-Threads.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Process-Threads.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Process.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Process.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Process.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Process.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ProcessEventArgs.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/ProcessEventArgs.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ProcessEventArgs.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/ProcessEventArgs.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/StackFrame.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/StackFrame.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/StackFrame.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/StackFrame.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Stepper.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Stepper.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Stepper.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Stepper.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/StepperEventArgs.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/StepperEventArgs.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/StepperEventArgs.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/StepperEventArgs.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Thread.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Thread.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Thread.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Thread.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ThreadEventArgs.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/ThreadEventArgs.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ThreadEventArgs.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/ThreadEventArgs.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/Breakpoint.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Breakpoint.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/Breakpoint.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Breakpoint.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Exceptions.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerException.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Exceptions.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerException.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Exception.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Exception.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/Exception.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Exception.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ExceptionType.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/ExceptionType.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/ExceptionType.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/ExceptionType.cs 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/PausedReason.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/PausedReason.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/PausedReason.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/SourcecodeSegment.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/SourcecodeSegment.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Threads/SourcecodeSegment.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/SourcecodeSegment.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/BreakpointEventArgs.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/EventArgs/BreakpointEventArgs.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoints/BreakpointEventArgs.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/EventArgs/BreakpointEventArgs.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/DebuggerEventArgs.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/EventArgs/DebuggerEventArgs.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/DebuggerEventArgs.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/EventArgs/DebuggerEventArgs.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Evals/EvalEventArgs.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/EventArgs/EvalEventArgs.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Evals/EvalEventArgs.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/EventArgs/EvalEventArgs.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/ExceptionEventArgs.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/EventArgs/ExceptionEventArgs.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/ExceptionEventArgs.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/EventArgs/ExceptionEventArgs.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/MessageEventArgs.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/EventArgs/MessageEventArgs.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerEvents/MessageEventArgs.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/EventArgs/MessageEventArgs.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/ModuleEventArgs.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/EventArgs/ModuleEventArgs.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Modules/ModuleEventArgs.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/EventArgs/ModuleEventArgs.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/MTA2STA.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Internal/MTA2STA.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/MTA2STA.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Internal/MTA2STA.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallback.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Internal/ManagedCallback.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallback.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Internal/ManagedCallback.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackProxy.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Internal/ManagedCallbackProxy.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackProxy.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Internal/ManagedCallbackProxy.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackSwitch.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Internal/ManagedCallbackSwitch.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Internal/ManagedCallbackSwitch.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Internal/ManagedCallbackSwitch.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Tests/ExpandAttribute.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Internal/Tests/ExpandAttribute.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Tests/ExpandAttribute.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Internal/Tests/ExpandAttribute.cs diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Tests/IgnoreAttribute.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Internal/Tests/IgnoreAttribute.cs similarity index 100% rename from src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Tests/IgnoreAttribute.cs rename to src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Internal/Tests/IgnoreAttribute.cs