Browse Source

Removed the Debugger.Internal namespace

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@5171 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
David Srbecký 16 years ago
parent
commit
8ee08d6071
  1. 9
      src/AddIns/Misc/Debugger/Debugger.Core/Debugger.Core.csproj
  2. 2
      src/AddIns/Misc/Debugger/Debugger.Core/Interop/MTA2STA.cs
  3. 4
      src/AddIns/Misc/Debugger/Debugger.Core/ManagedCallback.cs
  4. 2
      src/AddIns/Misc/Debugger/Debugger.Core/ManagedCallbackProxy.cs
  5. 4
      src/AddIns/Misc/Debugger/Debugger.Core/ManagedCallbackSwitch.cs
  6. 1
      src/AddIns/Misc/Debugger/Debugger.Core/NDebugger.cs
  7. 3
      src/AddIns/Misc/Debugger/Debugger.Core/Process.cs
  8. 1
      src/AddIns/Misc/Debugger/Debugger.Tests/DebuggerTestsBase.cs

9
src/AddIns/Misc/Debugger/Debugger.Core/Debugger.Core.csproj

@ -54,6 +54,10 @@ @@ -54,6 +54,10 @@
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<Compile Include="Interop\MTA2STA.cs" />
<Compile Include="ManagedCallback.cs" />
<Compile Include="ManagedCallbackProxy.cs" />
<Compile Include="ManagedCallbackSwitch.cs" />
<Compile Include="MetaData\DebugConstructorInfo.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="AppDomain.cs" />
@ -71,10 +75,6 @@ @@ -71,10 +75,6 @@
<Compile Include="Exception.cs" />
<Compile Include="ExceptionType.cs" />
<Compile Include="GetValueException.cs" />
<Compile Include="Internal\ManagedCallback.cs" />
<Compile Include="Internal\ManagedCallbackProxy.cs" />
<Compile Include="Internal\ManagedCallbackSwitch.cs" />
<Compile Include="Internal\MTA2STA.cs" />
<Compile Include="Interop\Common.cs" />
<Compile Include="Interop\CorDebug.cs" />
<Compile Include="Interop\CorDebugExtensionMethods.cs" />
@ -188,7 +188,6 @@ @@ -188,7 +188,6 @@
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<Folder Include="Internal" />
<Folder Include="Interop" />
<Folder Include="MetaData" />
<Folder Include="Mono.Cecil" />

2
src/AddIns/Misc/Debugger/Debugger.Core/Internal/MTA2STA.cs → src/AddIns/Misc/Debugger/Debugger.Core/Interop/MTA2STA.cs

@ -12,7 +12,7 @@ using System.Runtime.InteropServices; @@ -12,7 +12,7 @@ using System.Runtime.InteropServices;
using System.Threading;
using System.Windows.Forms;
namespace Debugger.Internal
namespace Debugger
{
public delegate T MethodInvokerWithReturnValue<T>();

4
src/AddIns/Misc/Debugger/Debugger.Core/Internal/ManagedCallback.cs → src/AddIns/Misc/Debugger/Debugger.Core/ManagedCallback.cs

@ -12,12 +12,12 @@ @@ -12,12 +12,12 @@
// Replace with:
// \1\2\n\1{\n\1\tEnterCallback(PausedReason.Other, "\3");\n\1\t\n\1\tExitCallback_Continue();\n\1}
using Debugger.Interop;
using System;
using System.Runtime.InteropServices;
using Debugger.Interop;
using Debugger.Interop.CorDebug;
namespace Debugger.Internal
namespace Debugger
{
/// <summary>
/// Handles all callbacks of a given process

2
src/AddIns/Misc/Debugger/Debugger.Core/Internal/ManagedCallbackProxy.cs → src/AddIns/Misc/Debugger/Debugger.Core/ManagedCallbackProxy.cs

@ -18,7 +18,7 @@ using Debugger.Interop.CorDebug; @@ -18,7 +18,7 @@ using Debugger.Interop.CorDebug;
// \1\2\n\1{\n\1\tCallbackReceived("\3", new object[] {\4, \5, \6, \7, \8, \9});\n\1}
// \1\2\n\1{\n\1\tCall(delegate {\n\1\t \trealCallback.\3(\n\1\t \t\tMTA2STA.MarshalIntPtrTo(\4),\n\1\t \t\tMTA2STA.MarshalIntPtrTo(\5),\n\1\t \t\tMTA2STA.MarshalIntPtrTo(\6),\n\1\t \t\tMTA2STA.MarshalIntPtrTo(\7),\n\1\t \t\tMTA2STA.MarshalIntPtrTo(\8),\n\1\t \t\tMTA2STA.MarshalIntPtrTo(\9),\n\1\t \t);\n\1\t });\n\1}
namespace Debugger.Internal
namespace Debugger
{
/// <summary>
/// This proxy marshals the callback to the appropriate thread

4
src/AddIns/Misc/Debugger/Debugger.Core/Internal/ManagedCallbackSwitch.cs → src/AddIns/Misc/Debugger/Debugger.Core/ManagedCallbackSwitch.cs

@ -12,12 +12,12 @@ @@ -12,12 +12,12 @@
// Replace with:
// \1\2\n\1{\n\1\tGetProcessCallbackInterface(\4).\3(\4, \5, \6, \7, \8, \9);\n\1}
using Debugger.Interop;
using System;
using System.Runtime.InteropServices;
using Debugger.Interop;
using Debugger.Interop.CorDebug;
namespace Debugger.Internal
namespace Debugger
{
/// <summary>
/// This class forwards the callback the the approprite process

1
src/AddIns/Misc/Debugger/Debugger.Core/NDebugger.cs

@ -9,7 +9,6 @@ using System; @@ -9,7 +9,6 @@ using System;
using System.Text;
using System.Threading;
using Debugger.Internal;
using Debugger.Interop;
using Debugger.Interop.CorDebug;
using Microsoft.Win32;

3
src/AddIns/Misc/Debugger/Debugger.Core/Process.cs

@ -5,12 +5,11 @@ @@ -5,12 +5,11 @@
// <version>$Revision$</version>
// </file>
using ICSharpCode.NRefactory.Visitors;
using System;
using System.Collections.Generic;
using Debugger.Internal;
using Debugger.Interop.CorDebug;
using ICSharpCode.NRefactory.Ast;
using ICSharpCode.NRefactory.Visitors;
namespace Debugger
{

1
src/AddIns/Misc/Debugger/Debugger.Tests/DebuggerTestsBase.cs

@ -16,7 +16,6 @@ using System.Security.Cryptography; @@ -16,7 +16,6 @@ using System.Security.Cryptography;
using System.Text;
using System.Xml;
using Debugger.Internal;
using Microsoft.CSharp;
using NUnit.Framework;

Loading…
Cancel
Save