Browse Source

Moving some files around

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@5123 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
David Srbecký 16 years ago
parent
commit
07c2eef28b
  1. 88
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Debugger.Core.csproj
  2. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/AppDomain.cs
  3. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/AppDomainCollection.cs
  4. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/ArrayDimension.cs
  5. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/ArrayDimensions.cs
  6. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoint.cs
  7. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/BreakpointCollection.cs
  8. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/DebuggeeState.cs
  9. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/DebuggerException.cs
  10. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/DebuggerObject.cs
  11. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Eval.cs
  12. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/EvalCollection.cs
  13. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Exception.cs
  14. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/ExceptionType.cs
  15. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/GetValueException.cs
  16. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Module.cs
  17. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/ModuleCollection.cs
  18. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/NDebugger.cs
  19. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Options.cs
  20. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/PauseSession.cs
  21. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/PausedReason.cs
  22. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Process.cs
  23. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/ProcessCollection.cs
  24. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/ProcessEventArgs.cs
  25. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/SourcecodeSegment.cs
  26. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/StackFrame.cs
  27. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Stepper.cs
  28. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Tests/ExpandAttribute.cs
  29. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Tests/IgnoreAttribute.cs
  30. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Tests/IgnoreOnExceptionAttribute.cs
  31. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Thread.cs
  32. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/ThreadCollection.cs
  33. 0
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Value.cs

88
src/AddIns/Misc/Debugger/Debugger.Core/Project/Debugger.Core.csproj

@ -56,41 +56,27 @@ @@ -56,41 +56,27 @@
</ItemGroup>
<ItemGroup>
<Compile Include="Configuration\AssemblyInfo.cs" />
<Compile Include="Src\AppDomain.cs" />
<Compile Include="Src\AppDomainCollection.cs" />
<Compile Include="Src\ArrayDimension.cs" />
<Compile Include="Src\ArrayDimensions.cs" />
<Compile Include="Src\Breakpoint.cs" />
<Compile Include="Src\BreakpointCollection.cs" />
<Compile Include="Src\CollectionWithEvents.cs" />
<Compile Include="Src\Control\AppDomain.cs" />
<Compile Include="Src\Control\Eval.cs" />
<Compile Include="Src\Control\Module.cs" />
<Compile Include="Src\Control\BreakpointCollection.cs" />
<Compile Include="Src\Control\ProcessCollection.cs" />
<Compile Include="Src\Control\NDebugger.cs" />
<Compile Include="Src\Control\AppDomainCollection.cs" />
<Compile Include="Src\Control\EvalCollection.cs" />
<Compile Include="Src\Control\ModuleCollection.cs" />
<Compile Include="Src\Control\ProcessEventArgs.cs" />
<Compile Include="Src\Control\ThreadCollection.cs" />
<Compile Include="Src\Control\Process.cs" />
<Compile Include="Src\Control\StackFrame.cs" />
<Compile Include="Src\Control\Stepper.cs" />
<Compile Include="Src\Control\Thread.cs" />
<Compile Include="Src\Debugger\Breakpoint.cs" />
<Compile Include="Src\Debugger\DebuggeeState.cs" />
<Compile Include="Src\Debugger\DebuggerException.cs" />
<Compile Include="Src\Debugger\DebuggerObject.cs" />
<Compile Include="Src\Debugger\Exception.cs" />
<Compile Include="Src\Debugger\ExceptionType.cs" />
<Compile Include="Src\Debugger\Options.cs" />
<Compile Include="Src\Debugger\PausedReason.cs" />
<Compile Include="Src\Debugger\PauseSession.cs" />
<Compile Include="Src\Debugger\SourcecodeSegment.cs" />
<Compile Include="Src\DebuggeeState.cs" />
<Compile Include="Src\DebuggerException.cs" />
<Compile Include="Src\DebuggerObject.cs" />
<Compile Include="Src\Eval.cs" />
<Compile Include="Src\EvalCollection.cs" />
<Compile Include="Src\Exception.cs" />
<Compile Include="Src\ExceptionType.cs" />
<Compile Include="Src\Expressions\ExpressionEvaluator.cs" />
<Compile Include="Src\Expressions\ExpressionExtensionMethods.cs" />
<Compile Include="Src\GetValueException.cs" />
<Compile Include="Src\Internal\ManagedCallback.cs" />
<Compile Include="Src\Internal\ManagedCallbackProxy.cs" />
<Compile Include="Src\Internal\ManagedCallbackSwitch.cs" />
<Compile Include="Src\Internal\MTA2STA.cs" />
<Compile Include="Src\Internal\Tests\ExpandAttribute.cs" />
<Compile Include="Src\Internal\Tests\IgnoreAttribute.cs" />
<Compile Include="Src\Internal\Tests\IgnoreOnExceptionAttribute.cs" />
<Compile Include="Src\Interop\CorDebug\CorDebug.cs" />
<Compile Include="Src\Interop\CorDebug\CorDebugChainReason.cs" />
<Compile Include="Src\Interop\CorDebug\CorDebugClass.cs" />
@ -220,13 +206,15 @@ @@ -220,13 +206,15 @@
<Compile Include="Src\Interop\Enums\CorTokenType.cs" />
<Compile Include="Src\Interop\MetaData\COR_FIELD_OFFSET.cs" />
<Compile Include="Src\Interop\MetaData\IMetaDataImport.cs" />
<Compile Include="Src\Metadata\DebugLocalVariableInfo.cs" />
<Compile Include="Src\Metadata\DebugParameterInfo.cs" />
<Compile Include="Src\Metadata\DebugType.cs" />
<Compile Include="Src\Metadata\DebugFieldInfo.cs" />
<Compile Include="Src\Metadata\DebugLocalVariableInfo.cs" />
<Compile Include="Src\Metadata\DebugMethodInfo.cs" />
<Compile Include="Src\Metadata\DebugParameterInfo.cs" />
<Compile Include="Src\Metadata\DebugPropertyInfo.cs" />
<Compile Include="Src\Metadata\DebugType.cs" />
<Compile Include="Src\Metadata\IDebugMemberInfo.cs" />
<Compile Include="Src\Module.cs" />
<Compile Include="Src\ModuleCollection.cs" />
<Compile Include="Src\Mono.Cecil\Mono.Cecil.Binary\ImageFormatException.cs" />
<Compile Include="Src\Mono.Cecil\Mono.Cecil.Metadata\CodedIndex.cs" />
<Compile Include="Src\Mono.Cecil\Mono.Cecil.Metadata\ElementType.cs" />
@ -267,11 +255,23 @@ @@ -267,11 +255,23 @@
<Compile Include="Src\Mono.Cecil\Mono.Cecil.Signatures\Var.cs" />
<Compile Include="Src\Mono.Cecil\Mono.Cecil\MethodCallingConvention.cs" />
<Compile Include="Src\Mono.Cecil\Mono.Cecil\ReflectionException.cs" />
<Compile Include="Src\NDebugger.cs" />
<Compile Include="Src\Options.cs" />
<Compile Include="Src\PausedReason.cs" />
<Compile Include="Src\PauseSession.cs" />
<Compile Include="Src\Process.cs" />
<Compile Include="Src\ProcessCollection.cs" />
<Compile Include="Src\ProcessEventArgs.cs" />
<Compile Include="Src\SourcecodeSegment.cs" />
<Compile Include="Src\StackFrame.cs" />
<Compile Include="Src\Stepper.cs" />
<Compile Include="Src\Tests\ExpandAttribute.cs" />
<Compile Include="Src\Tests\IgnoreAttribute.cs" />
<Compile Include="Src\Tests\IgnoreOnExceptionAttribute.cs" />
<Compile Include="Src\Thread.cs" />
<Compile Include="Src\ThreadCollection.cs" />
<Compile Include="Src\Util\HighPrecisionTimer.cs" />
<Compile Include="Src\Values\ArrayDimension.cs" />
<Compile Include="Src\Values\ArrayDimensions.cs" />
<Compile Include="Src\Values\GetValueException.cs" />
<Compile Include="Src\Values\Value.cs" />
<Compile Include="Src\Value.cs" />
<Compile Include="Src\Wrappers\CorDebug\Autogenerated\CorDebug.cs" />
<Compile Include="Src\Wrappers\CorDebug\Autogenerated\CorDebugChainReason.cs" />
<Compile Include="Src\Wrappers\CorDebug\Autogenerated\CorDebugClass.cs" />
@ -451,11 +451,29 @@ @@ -451,11 +451,29 @@
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<Folder Include="Src\Expressions" />
<Folder Include="Src\Internal" />
<Folder Include="Src\Interop" />
<Folder Include="Src\Interop\CorDebug" />
<Folder Include="Src\Interop\CorSym" />
<Folder Include="Src\Interop\Enums" />
<Folder Include="Src\Interop\MetaData" />
<Folder Include="Src\Metadata" />
<Folder Include="Src\Mono.Cecil" />
<Folder Include="Src\Mono.Cecil\Mono.Cecil" />
<Folder Include="Src\Mono.Cecil\Mono.Cecil.Binary" />
<Folder Include="Src\Mono.Cecil\Mono.Cecil.Metadata" />
<Folder Include="Src\Mono.Cecil\Mono.Cecil.Signatures" />
<Folder Include="Src\Tests" />
<Folder Include="Src\Util" />
<Folder Include="Src\Wrappers" />
<Folder Include="Src\Wrappers\CorDebug" />
<Folder Include="Src\Wrappers\CorDebug\Autogenerated" />
<Folder Include="Src\Wrappers\CorPub" />
<Folder Include="Src\Wrappers\CorPub\Autogenerated" />
<Folder Include="Src\Wrappers\CorSym" />
<Folder Include="Src\Wrappers\CorSym\Autogenerated" />
<Folder Include="Src\Wrappers\MetaData" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\..\Libraries\NRefactory\Project\NRefactory.csproj">

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/AppDomain.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/AppDomain.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/AppDomainCollection.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/AppDomainCollection.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Values/ArrayDimension.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/ArrayDimension.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Values/ArrayDimensions.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/ArrayDimensions.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Breakpoint.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Breakpoint.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/BreakpointCollection.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/BreakpointCollection.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggeeState.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/DebuggeeState.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerException.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/DebuggerException.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/DebuggerObject.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/DebuggerObject.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Eval.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Eval.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/EvalCollection.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/EvalCollection.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Exception.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Exception.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/ExceptionType.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/ExceptionType.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Values/GetValueException.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/GetValueException.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Module.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Module.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/ModuleCollection.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/ModuleCollection.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/NDebugger.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/NDebugger.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/Options.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Options.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/PauseSession.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/PauseSession.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/PausedReason.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/PausedReason.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Process.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Process.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/ProcessCollection.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/ProcessCollection.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/ProcessEventArgs.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/ProcessEventArgs.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Debugger/SourcecodeSegment.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/SourcecodeSegment.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/StackFrame.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/StackFrame.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Stepper.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Stepper.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Internal/Tests/ExpandAttribute.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Tests/ExpandAttribute.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Internal/Tests/IgnoreAttribute.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Tests/IgnoreAttribute.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Internal/Tests/IgnoreOnExceptionAttribute.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Tests/IgnoreOnExceptionAttribute.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Thread.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Thread.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/ThreadCollection.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/ThreadCollection.cs

0
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Values/Value.cs → src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Value.cs

Loading…
Cancel
Save