Browse Source

Use "ICSharpCode." prefix for ILSpy.Debugger namespaces.

pull/191/merge
Eusebiu Marcu 15 years ago
parent
commit
895855f77f
  1. 4
      Debugger/ILSpy.Debugger/AvalonEdit/ITextMarker.cs
  2. 2
      Debugger/ILSpy.Debugger/AvalonEdit/IToolTip.cs
  3. 6
      Debugger/ILSpy.Debugger/AvalonEdit/IconBarMargin.cs
  4. 2
      Debugger/ILSpy.Debugger/AvalonEdit/TextEditorWeakEventManager.cs
  5. 4
      Debugger/ILSpy.Debugger/AvalonEdit/TextMarkerService.cs
  6. 2
      Debugger/ILSpy.Debugger/Bookmarks/BookmarkBase.cs
  7. 2
      Debugger/ILSpy.Debugger/Bookmarks/BookmarkEventHandler.cs
  8. 2
      Debugger/ILSpy.Debugger/Bookmarks/BookmarkManager.cs
  9. 6
      Debugger/ILSpy.Debugger/Bookmarks/BreakpointBookmark.cs
  10. 2
      Debugger/ILSpy.Debugger/Bookmarks/BreakpointBookmarkEventArgs.cs
  11. 6
      Debugger/ILSpy.Debugger/Bookmarks/CurrentLineBookmark.cs
  12. 2
      Debugger/ILSpy.Debugger/Bookmarks/IBookmark.cs
  13. 4
      Debugger/ILSpy.Debugger/Bookmarks/MarkerBookmark.cs
  14. 2
      Debugger/ILSpy.Debugger/DebuggedData.cs
  15. 2
      Debugger/ILSpy.Debugger/DebuggerSettings.cs
  16. 2
      Debugger/ILSpy.Debugger/ILSpy.Debugger.csproj
  17. 2
      Debugger/ILSpy.Debugger/Models/RunningProcess.cs
  18. 2
      Debugger/ILSpy.Debugger/Models/TreeModel/ArrayRangeNode.cs
  19. 6
      Debugger/ILSpy.Debugger/Models/TreeModel/ChildNodesOfObject.cs
  20. 6
      Debugger/ILSpy.Debugger/Models/TreeModel/ExpressionNode.cs
  21. 2
      Debugger/ILSpy.Debugger/Models/TreeModel/ICorDebug.cs
  22. 4
      Debugger/ILSpy.Debugger/Models/TreeModel/IEnumerableNode.cs
  23. 2
      Debugger/ILSpy.Debugger/Models/TreeModel/IListNode.cs
  24. 2
      Debugger/ILSpy.Debugger/Models/TreeModel/ISetText.cs
  25. 2
      Debugger/ILSpy.Debugger/Models/TreeModel/ITreeNode.cs
  26. 2
      Debugger/ILSpy.Debugger/Models/TreeModel/IVisualizerCommand.cs
  27. 2
      Debugger/ILSpy.Debugger/Models/TreeModel/SavedTreeNode.cs
  28. 2
      Debugger/ILSpy.Debugger/Models/TreeModel/StackFrameNode.cs
  29. 2
      Debugger/ILSpy.Debugger/Models/TreeModel/TreeNode.cs
  30. 2
      Debugger/ILSpy.Debugger/Models/TreeModel/Utils.cs
  31. 2
      Debugger/ILSpy.Debugger/Services/Debugger/DebuggerHelper.cs
  32. 6
      Debugger/ILSpy.Debugger/Services/Debugger/DebuggerService.cs
  33. 2
      Debugger/ILSpy.Debugger/Services/Debugger/IDebugger.cs
  34. 2
      Debugger/ILSpy.Debugger/Services/Debugger/ListHelper.cs
  35. 2
      Debugger/ILSpy.Debugger/Services/Debugger/RemotingConfigurationHelpper.cs
  36. 2
      Debugger/ILSpy.Debugger/Services/Debugger/TypeResolverExtension.cs
  37. 10
      Debugger/ILSpy.Debugger/Services/Debugger/WindowsDebugger.cs
  38. 2
      Debugger/ILSpy.Debugger/Services/ExtensionMethods.cs
  39. 2
      Debugger/ILSpy.Debugger/Services/ImageService/ImageService.cs
  40. 2
      Debugger/ILSpy.Debugger/Services/ParserService/ParserService.cs
  41. 4
      Debugger/ILSpy.Debugger/ToolTips/DebuggerPopup.cs
  42. 6
      Debugger/ILSpy.Debugger/ToolTips/DebuggerTooltipControl.xaml
  43. 8
      Debugger/ILSpy.Debugger/ToolTips/DebuggerTooltipControl.xaml.cs
  44. 4
      Debugger/ILSpy.Debugger/ToolTips/LazyItemsControl.cs
  45. 2
      Debugger/ILSpy.Debugger/ToolTips/Models/ToolTipRequestEventArgs.cs
  46. 6
      Debugger/ILSpy.Debugger/ToolTips/TextEditorListener.cs
  47. 2
      Debugger/ILSpy.Debugger/ToolTips/VirtualizingIEnumerable.cs
  48. 4
      Debugger/ILSpy.Debugger/UI/AttachToProcessWindow.xaml
  49. 4
      Debugger/ILSpy.Debugger/UI/AttachToProcessWindow.xaml.cs
  50. 2
      ILSpy/App.xaml.cs
  51. 8
      ILSpy/Commands/DebuggerCommands.cs
  52. 4
      ILSpy/MainWindow.xaml.cs
  53. 2
      ILSpy/Options/DebuggerSettingsPanel.xaml.cs
  54. 12
      ILSpy/TextView/DecompilerTextView.cs
  55. 4
      ILSpy/TreeNodes/TypeTreeNode.cs

4
Debugger/ILSpy.Debugger/AvalonEdit/ITextMarker.cs

@ -5,9 +5,9 @@ using System; @@ -5,9 +5,9 @@ using System;
using System.Collections.Generic;
using System.Windows.Media;
using ILSpy.Debugger.Bookmarks;
using ICSharpCode.ILSpy.Debugger.Bookmarks;
namespace ILSpy.Debugger.AvalonEdit
namespace ICSharpCode.ILSpy.Debugger.AvalonEdit
{
/// <summary>
/// Represents a text marker.

2
Debugger/ILSpy.Debugger/AvalonEdit/IToolTip.cs

@ -4,7 +4,7 @@ @@ -4,7 +4,7 @@
using System;
using System.Windows;
namespace ILSpy.Debugger.AvalonEdit
namespace ICSharpCode.ILSpy.Debugger.AvalonEdit
{
/// <summary>
/// Content of text editor tooltip (used as <see cref="ToolTipRequestEventArgs.ContentToShow"/>),

6
Debugger/ILSpy.Debugger/AvalonEdit/IconBarMargin.cs

@ -12,11 +12,11 @@ using ICSharpCode.AvalonEdit.Editing; @@ -12,11 +12,11 @@ using ICSharpCode.AvalonEdit.Editing;
using ICSharpCode.AvalonEdit.Rendering;
using ICSharpCode.AvalonEdit.Utils;
using ICSharpCode.Decompiler;
using ILSpy.Debugger.Bookmarks;
using ILSpy.Debugger.Services;
using ICSharpCode.ILSpy.Debugger.Bookmarks;
using ICSharpCode.ILSpy.Debugger.Services;
using Mono.Cecil;
namespace ILSpy.Debugger.AvalonEdit
namespace ICSharpCode.ILSpy.Debugger.AvalonEdit
{
[Export("IconMargin"), PartCreationPolicy(CreationPolicy.Shared)]
public class IconBarMargin : AbstractMargin, IDisposable

2
Debugger/ILSpy.Debugger/AvalonEdit/TextEditorWeakEventManager.cs

@ -6,7 +6,7 @@ using System.Windows; @@ -6,7 +6,7 @@ using System.Windows;
using ICSharpCode.AvalonEdit;
using ICSharpCode.AvalonEdit.Utils;
namespace ILSpy.Debugger.AvalonEdit
namespace ICSharpCode.ILSpy.Debugger.AvalonEdit
{
public static class TextEditorWeakEventManager
{

4
Debugger/ILSpy.Debugger/AvalonEdit/TextMarkerService.cs

@ -12,9 +12,9 @@ using System.Windows.Threading; @@ -12,9 +12,9 @@ using System.Windows.Threading;
using ICSharpCode.AvalonEdit;
using ICSharpCode.AvalonEdit.Document;
using ICSharpCode.AvalonEdit.Rendering;
using ILSpy.Debugger.Bookmarks;
using ICSharpCode.ILSpy.Debugger.Bookmarks;
namespace ILSpy.Debugger.AvalonEdit
namespace ICSharpCode.ILSpy.Debugger.AvalonEdit
{
/// <summary>
/// Handles the text markers for a code editor.

2
Debugger/ILSpy.Debugger/Bookmarks/BookmarkBase.cs

@ -8,7 +8,7 @@ using System.Windows.Media; @@ -8,7 +8,7 @@ using System.Windows.Media;
using ICSharpCode.NRefactory.CSharp;
using Mono.Cecil;
namespace ILSpy.Debugger.Bookmarks
namespace ICSharpCode.ILSpy.Debugger.Bookmarks
{
/// <summary>
/// A bookmark that can be attached to an AvalonEdit TextDocument.

2
Debugger/ILSpy.Debugger/Bookmarks/BookmarkEventHandler.cs

@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
using System;
namespace ILSpy.Debugger.Bookmarks
namespace ICSharpCode.ILSpy.Debugger.Bookmarks
{
public delegate void BookmarkEventHandler(object sender, BookmarkEventArgs e);

2
Debugger/ILSpy.Debugger/Bookmarks/BookmarkManager.cs

@ -8,7 +8,7 @@ using ICSharpCode.NRefactory.CSharp; @@ -8,7 +8,7 @@ using ICSharpCode.NRefactory.CSharp;
using Mono.Cecil;
using Mono.CSharp;
namespace ILSpy.Debugger.Bookmarks
namespace ICSharpCode.ILSpy.Debugger.Bookmarks
{
/// <summary>
/// Static class that maintains the list of bookmarks and breakpoints.

6
Debugger/ILSpy.Debugger/Bookmarks/BreakpointBookmark.cs

@ -6,11 +6,11 @@ using System.Windows.Media; @@ -6,11 +6,11 @@ using System.Windows.Media;
using ICSharpCode.AvalonEdit.Document;
using ICSharpCode.Decompiler;
using ICSharpCode.NRefactory.CSharp;
using ILSpy.Debugger.AvalonEdit;
using ILSpy.Debugger.Services;
using ICSharpCode.ILSpy.Debugger.AvalonEdit;
using ICSharpCode.ILSpy.Debugger.Services;
using Mono.Cecil;
namespace ILSpy.Debugger.Bookmarks
namespace ICSharpCode.ILSpy.Debugger.Bookmarks
{
public enum BreakpointAction
{

2
Debugger/ILSpy.Debugger/Bookmarks/BreakpointBookmarkEventArgs.cs

@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
using System;
namespace ILSpy.Debugger.Bookmarks
namespace ICSharpCode.ILSpy.Debugger.Bookmarks
{
public class BreakpointBookmarkEventArgs : EventArgs
{

6
Debugger/ILSpy.Debugger/Bookmarks/CurrentLineBookmark.cs

@ -4,12 +4,12 @@ @@ -4,12 +4,12 @@
using System;
using System.Windows.Media;
using ICSharpCode.NRefactory.CSharp;
using ILSpy.Debugger.AvalonEdit;
using ILSpy.Debugger.Services;
using ICSharpCode.ILSpy.Debugger.AvalonEdit;
using ICSharpCode.ILSpy.Debugger.Services;
using Mono.Cecil;
using Mono.CSharp;
namespace ILSpy.Debugger.Bookmarks
namespace ICSharpCode.ILSpy.Debugger.Bookmarks
{
public class CurrentLineBookmark : MarkerBookmark
{

2
Debugger/ILSpy.Debugger/Bookmarks/IBookmark.cs

@ -8,7 +8,7 @@ using System.Collections.Specialized; @@ -8,7 +8,7 @@ using System.Collections.Specialized;
using System.Windows.Input;
using System.Windows.Media;
namespace ILSpy.Debugger.Bookmarks
namespace ICSharpCode.ILSpy.Debugger.Bookmarks
{
/// <summary>
/// The bookmark margin.

4
Debugger/ILSpy.Debugger/Bookmarks/MarkerBookmark.cs

@ -3,10 +3,10 @@ @@ -3,10 +3,10 @@
using System;
using ICSharpCode.NRefactory.CSharp;
using ILSpy.Debugger.AvalonEdit;
using ICSharpCode.ILSpy.Debugger.AvalonEdit;
using Mono.Cecil;
namespace ILSpy.Debugger.Bookmarks
namespace ICSharpCode.ILSpy.Debugger.Bookmarks
{
public abstract class MarkerBookmark : BookmarkBase
{

2
Debugger/ILSpy.Debugger/DebuggedData.cs

@ -6,7 +6,7 @@ using System.Collections.Generic; @@ -6,7 +6,7 @@ using System.Collections.Generic;
using ICSharpCode.Decompiler;
using Mono.Cecil;
namespace ILSpy.Debugger
namespace ICSharpCode.ILSpy.Debugger
{
/// <summary>
/// Contains the data important for debugger from the main application.

2
Debugger/ILSpy.Debugger/DebuggerSettings.cs

@ -4,7 +4,7 @@ @@ -4,7 +4,7 @@
using System;
using System.ComponentModel;
namespace ILSpy.Debugger
namespace ICSharpCode.ILSpy.Debugger
{
public class DebuggerSettings : INotifyPropertyChanged
{

2
Debugger/ILSpy.Debugger/ILSpy.Debugger.csproj

@ -5,7 +5,7 @@ @@ -5,7 +5,7 @@
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<OutputType>Library</OutputType>
<RootNamespace>ILSpy.Debugger</RootNamespace>
<RootNamespace>ICSharpCode.ILSpy.Debugger</RootNamespace>
<AssemblyName>ILSpy.Debugger</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<AppDesignerFolder>Properties</AppDesignerFolder>

2
Debugger/ILSpy.Debugger/Models/RunningProcess.cs

@ -7,7 +7,7 @@ using System.IO; @@ -7,7 +7,7 @@ using System.IO;
using System.Linq;
using System.Windows.Controls;
namespace ILSpy.Debugger.Models
namespace ICSharpCode.ILSpy.Debugger.Models
{
sealed class RunningProcess
{

2
Debugger/ILSpy.Debugger/Models/TreeModel/ArrayRangeNode.cs

@ -8,7 +8,7 @@ using Debugger; @@ -8,7 +8,7 @@ using Debugger;
using ICSharpCode.NRefactory.Ast;
using ICSharpCode.NRefactory.CSharp;
namespace ILSpy.Debugger.Models.TreeModel
namespace ICSharpCode.ILSpy.Debugger.Models.TreeModel
{
internal static partial class Utils
{

6
Debugger/ILSpy.Debugger/Models/TreeModel/ChildNodesOfObject.cs

@ -8,11 +8,11 @@ using Debugger; @@ -8,11 +8,11 @@ using Debugger;
using Debugger.MetaData;
using ICSharpCode.NRefactory.Ast;
using ICSharpCode.NRefactory.CSharp;
using ILSpy.Debugger.Services;
using ILSpy.Debugger.Services.Debugger;
using ICSharpCode.ILSpy.Debugger.Services;
using ICSharpCode.ILSpy.Debugger.Services.Debugger;
using Module = Debugger.Module;
namespace ILSpy.Debugger.Models.TreeModel
namespace ICSharpCode.ILSpy.Debugger.Models.TreeModel
{
internal partial class Utils
{

6
Debugger/ILSpy.Debugger/Models/TreeModel/ExpressionNode.cs

@ -14,10 +14,10 @@ using Debugger.MetaData; @@ -14,10 +14,10 @@ using Debugger.MetaData;
using ICSharpCode.Decompiler.ILAst;
using ICSharpCode.NRefactory.Ast;
using ICSharpCode.NRefactory.CSharp;
using ILSpy.Debugger.Services;
using ILSpy.Debugger.Services.Debugger;
using ICSharpCode.ILSpy.Debugger.Services;
using ICSharpCode.ILSpy.Debugger.Services.Debugger;
namespace ILSpy.Debugger.Models.TreeModel
namespace ICSharpCode.ILSpy.Debugger.Models.TreeModel
{
internal class ExpressionNode: TreeNode, ISetText, INotifyPropertyChanged
{

2
Debugger/ILSpy.Debugger/Models/TreeModel/ICorDebug.cs

@ -5,7 +5,7 @@ using Debugger.Interop.CorDebug; @@ -5,7 +5,7 @@ using Debugger.Interop.CorDebug;
using Debugger.MetaData;
using Debugger;
namespace ILSpy.Debugger.Models.TreeModel
namespace ICSharpCode.ILSpy.Debugger.Models.TreeModel
{
internal class ICorDebug
{

4
Debugger/ILSpy.Debugger/Models/TreeModel/IEnumerableNode.cs

@ -3,9 +3,9 @@ @@ -3,9 +3,9 @@
using System;
using Debugger.MetaData;
using ICSharpCode.NRefactory.CSharp;
using ILSpy.Debugger.Services.Debugger;
using ICSharpCode.ILSpy.Debugger.Services.Debugger;
namespace ILSpy.Debugger.Models.TreeModel
namespace ICSharpCode.ILSpy.Debugger.Models.TreeModel
{
/// <summary>
/// IEnumerable node in the variable tree.

2
Debugger/ILSpy.Debugger/Models/TreeModel/IListNode.cs

@ -2,7 +2,7 @@ @@ -2,7 +2,7 @@
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
using ICSharpCode.NRefactory.CSharp;
namespace ILSpy.Debugger.Models.TreeModel
namespace ICSharpCode.ILSpy.Debugger.Models.TreeModel
{
internal class IListNode : TreeNode
{

2
Debugger/ILSpy.Debugger/Models/TreeModel/ISetText.cs

@ -2,7 +2,7 @@ @@ -2,7 +2,7 @@
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
using System;
namespace ILSpy.Debugger.Models.TreeModel
namespace ICSharpCode.ILSpy.Debugger.Models.TreeModel
{
internal interface ISetText
{

2
Debugger/ILSpy.Debugger/Models/TreeModel/ITreeNode.cs

@ -5,7 +5,7 @@ using System; @@ -5,7 +5,7 @@ using System;
using System.Collections.Generic;
using System.Windows.Media;
namespace ILSpy.Debugger.Models.TreeModel
namespace ICSharpCode.ILSpy.Debugger.Models.TreeModel
{
/// <summary>
/// Node that can be bound to <see cref="DebuggerTooltipControl" />.

2
Debugger/ILSpy.Debugger/Models/TreeModel/IVisualizerCommand.cs

@ -5,7 +5,7 @@ using System; @@ -5,7 +5,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
namespace ILSpy.Debugger.Models.TreeModel
namespace ICSharpCode.ILSpy.Debugger.Models.TreeModel
{
/// <summary>
/// Command called from <see cref="VisualizerPicker"/>.

2
Debugger/ILSpy.Debugger/Models/TreeModel/SavedTreeNode.cs

@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
using System;
using System.Windows.Media;
namespace ILSpy.Debugger.Models.TreeModel
namespace ICSharpCode.ILSpy.Debugger.Models.TreeModel
{
internal class SavedTreeNode : TreeNode
{

2
Debugger/ILSpy.Debugger/Models/TreeModel/StackFrameNode.cs

@ -6,7 +6,7 @@ using Debugger.MetaData; @@ -6,7 +6,7 @@ using Debugger.MetaData;
using ICSharpCode.NRefactory.Ast;
using ICSharpCode.NRefactory.CSharp;
namespace ILSpy.Debugger.Models.TreeModel
namespace ICSharpCode.ILSpy.Debugger.Models.TreeModel
{
internal class StackFrameNode: TreeNode
{

2
Debugger/ILSpy.Debugger/Models/TreeModel/TreeNode.cs

@ -7,7 +7,7 @@ using System.ComponentModel; @@ -7,7 +7,7 @@ using System.ComponentModel;
using System.Linq;
using System.Windows.Media;
namespace ILSpy.Debugger.Models.TreeModel
namespace ICSharpCode.ILSpy.Debugger.Models.TreeModel
{
/// <summary>
/// A node in the variable tree.

2
Debugger/ILSpy.Debugger/Models/TreeModel/Utils.cs

@ -5,7 +5,7 @@ using System.Windows.Threading; @@ -5,7 +5,7 @@ using System.Windows.Threading;
using Debugger;
namespace ILSpy.Debugger.Models.TreeModel
namespace ICSharpCode.ILSpy.Debugger.Models.TreeModel
{
internal static partial class Utils
{

2
Debugger/ILSpy.Debugger/Services/Debugger/DebuggerHelper.cs

@ -10,7 +10,7 @@ using Debugger.MetaData; @@ -10,7 +10,7 @@ using Debugger.MetaData;
using ICSharpCode.NRefactory.Ast;
using ICSharpCode.NRefactory.CSharp;
namespace ILSpy.Debugger.Services.Debugger
namespace ICSharpCode.ILSpy.Debugger.Services.Debugger
{
public static class DebuggerHelpers
{

6
Debugger/ILSpy.Debugger/Services/Debugger/DebuggerService.cs

@ -6,11 +6,11 @@ using System.Collections.Generic; @@ -6,11 +6,11 @@ using System.Collections.Generic;
using ICSharpCode.AvalonEdit.Document;
using ICSharpCode.Decompiler;
using ICSharpCode.NRefactory.CSharp.Resolver;
using ILSpy.Debugger.Bookmarks;
using ILSpy.Debugger.Tooltips;
using ICSharpCode.ILSpy.Debugger.Bookmarks;
using ICSharpCode.ILSpy.Debugger.Tooltips;
using Mono.Cecil;
namespace ILSpy.Debugger.Services
namespace ICSharpCode.ILSpy.Debugger.Services
{
public static class DebuggerService
{

2
Debugger/ILSpy.Debugger/Services/Debugger/IDebugger.cs

@ -6,7 +6,7 @@ using System.Diagnostics; @@ -6,7 +6,7 @@ using System.Diagnostics;
using ICSharpCode.Decompiler;
using ICSharpCode.NRefactory.CSharp;
namespace ILSpy.Debugger.Services
namespace ICSharpCode.ILSpy.Debugger.Services
{
public interface IDebugger : IDisposable
{

2
Debugger/ILSpy.Debugger/Services/Debugger/ListHelper.cs

@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
using System;
using System.Collections.Generic;
namespace ILSpy.Debugger.Services.Debugger
namespace ICSharpCode.ILSpy.Debugger.Services.Debugger
{
/// <summary>
/// ListHelper wraps System.Collection.Generic.List methods to return the original list,

2
Debugger/ILSpy.Debugger/Services/Debugger/RemotingConfigurationHelpper.cs

@ -6,7 +6,7 @@ using System.Reflection; @@ -6,7 +6,7 @@ using System.Reflection;
using System.Runtime.Remoting;
using System.Security.Policy;
namespace ILSpy.Debugger.Services.Debugger
namespace ICSharpCode.ILSpy.Debugger.Services.Debugger
{
[Serializable]
class RemotingConfigurationHelpper

2
Debugger/ILSpy.Debugger/Services/Debugger/TypeResolverExtension.cs

@ -6,7 +6,7 @@ using Debugger.MetaData; @@ -6,7 +6,7 @@ using Debugger.MetaData;
using System.Collections.Generic;
using System.Linq;
namespace ILSpy.Debugger.Services.Debugger
namespace ICSharpCode.ILSpy.Debugger.Services.Debugger
{
/// <summary>
/// Helper for obtaining information about DebugType.

10
Debugger/ILSpy.Debugger/Services/Debugger/WindowsDebugger.cs

@ -20,16 +20,16 @@ using ICSharpCode.Decompiler.Disassembler; @@ -20,16 +20,16 @@ using ICSharpCode.Decompiler.Disassembler;
using ICSharpCode.NRefactory;
using ICSharpCode.NRefactory.CSharp;
using ICSharpCode.NRefactory.Visitors;
using ILSpy.Debugger.Bookmarks;
using ILSpy.Debugger.Models.TreeModel;
using ILSpy.Debugger.Services.Debugger;
using ILSpy.Debugger.Tooltips;
using ICSharpCode.ILSpy.Debugger.Bookmarks;
using ICSharpCode.ILSpy.Debugger.Models.TreeModel;
using ICSharpCode.ILSpy.Debugger.Services.Debugger;
using ICSharpCode.ILSpy.Debugger.Tooltips;
using Mono.Cecil;
using CorDbg = Debugger;
using Process = Debugger.Process;
using StackFrame = Debugger.StackFrame;
namespace ILSpy.Debugger.Services
namespace ICSharpCode.ILSpy.Debugger.Services
{
public class WindowsDebugger : IDebugger
{

2
Debugger/ILSpy.Debugger/Services/ExtensionMethods.cs

@ -14,7 +14,7 @@ using System.Windows.Media; @@ -14,7 +14,7 @@ using System.Windows.Media;
using System.Xml;
using System.Xml.Linq;
namespace ILSpy.Debugger.Services
namespace ICSharpCode.ILSpy.Debugger.Services
{
/// <summary>
/// Extension methods used in SharpDevelop.

2
Debugger/ILSpy.Debugger/Services/ImageService/ImageService.cs

@ -5,7 +5,7 @@ using System; @@ -5,7 +5,7 @@ using System;
using System.Windows.Media;
using System.Windows.Media.Imaging;
namespace ILSpy.Debugger.Services
namespace ICSharpCode.ILSpy.Debugger.Services
{
static class ImageService
{

2
Debugger/ILSpy.Debugger/Services/ParserService/ParserService.cs

@ -4,7 +4,7 @@ @@ -4,7 +4,7 @@
using System;
using System.Collections.Generic;
namespace ILSpy.Debugger.Services
namespace ICSharpCode.ILSpy.Debugger.Services
{
/// <summary>
/// Very naive parser.

4
Debugger/ILSpy.Debugger/ToolTips/DebuggerPopup.cs

@ -6,9 +6,9 @@ using System.Collections.Generic; @@ -6,9 +6,9 @@ using System.Collections.Generic;
using System.Windows.Controls.Primitives;
using ICSharpCode.NRefactory.CSharp;
using ILSpy.Debugger.Models.TreeModel;
using ICSharpCode.ILSpy.Debugger.Models.TreeModel;
namespace ILSpy.Debugger.Tooltips
namespace ICSharpCode.ILSpy.Debugger.Tooltips
{
/// <summary>
/// Popup containing <see cref="DebuggerTooltipControl"></see>.

6
Debugger/ILSpy.Debugger/ToolTips/DebuggerTooltipControl.xaml

@ -1,12 +1,12 @@ @@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<UserControl
x:Class="ILSpy.Debugger.Tooltips.DebuggerTooltipControl"
x:Class="ICSharpCode.ILSpy.Debugger.Tooltips.DebuggerTooltipControl"
x:ClassModifier="internal"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:aero="clr-namespace:Microsoft.Windows.Themes;assembly=PresentationFramework.Aero"
xmlns:debugging="clr-namespace:ILSpy.Debugger.Tooltips"
xmlns:localControls="clr-namespace:ILSpy.Debugger.Tooltips"
xmlns:debugging="clr-namespace:ICSharpCode.ILSpy.Debugger.Tooltips"
xmlns:localControls="clr-namespace:ICSharpCode.ILSpy.Debugger.Tooltips"
Background="Transparent">
<UserControl.Resources>
<ResourceDictionary>

8
Debugger/ILSpy.Debugger/ToolTips/DebuggerTooltipControl.xaml.cs

@ -14,11 +14,11 @@ using System.Windows.Media.Animation; @@ -14,11 +14,11 @@ using System.Windows.Media.Animation;
using System.Windows.Shapes;
using ICSharpCode.NRefactory.CSharp;
using ILSpy.Debugger.AvalonEdit;
using ILSpy.Debugger.Models.TreeModel;
using ILSpy.Debugger.Services;
using ICSharpCode.ILSpy.Debugger.AvalonEdit;
using ICSharpCode.ILSpy.Debugger.Models.TreeModel;
using ICSharpCode.ILSpy.Debugger.Services;
namespace ILSpy.Debugger.Tooltips
namespace ICSharpCode.ILSpy.Debugger.Tooltips
{
/// <summary>
/// Default Control used as content of SharpDevelop debugger tooltips.

4
Debugger/ILSpy.Debugger/ToolTips/LazyItemsControl.cs

@ -5,9 +5,9 @@ using System; @@ -5,9 +5,9 @@ using System;
using System.Collections.Generic;
using System.Windows.Controls;
using ILSpy.Debugger.Services;
using ICSharpCode.ILSpy.Debugger.Services;
namespace ILSpy.Debugger.Tooltips
namespace ICSharpCode.ILSpy.Debugger.Tooltips
{
/// <summary>
/// ItemsControl wrapper that takes VirtualizingIEnumerable as source,

2
Debugger/ILSpy.Debugger/ToolTips/Models/ToolTipRequestEventArgs.cs

@ -5,7 +5,7 @@ using System; @@ -5,7 +5,7 @@ using System;
using ICSharpCode.AvalonEdit;
using ICSharpCode.NRefactory.CSharp;
namespace ILSpy.Debugger.Tooltips
namespace ICSharpCode.ILSpy.Debugger.Tooltips
{
internal class ToolTipRequestEventArgs : EventArgs
{

6
Debugger/ILSpy.Debugger/ToolTips/TextEditorListener.cs

@ -10,10 +10,10 @@ using System.Windows.Input; @@ -10,10 +10,10 @@ using System.Windows.Input;
using ICSharpCode.AvalonEdit;
using ICSharpCode.AvalonEdit.Rendering;
using ICSharpCode.NRefactory.CSharp;
using ILSpy.Debugger.AvalonEdit;
using ILSpy.Debugger.Services;
using ICSharpCode.ILSpy.Debugger.AvalonEdit;
using ICSharpCode.ILSpy.Debugger.Services;
namespace ILSpy.Debugger.Tooltips
namespace ICSharpCode.ILSpy.Debugger.Tooltips
{
public sealed class TextEditorListener : IWeakEventListener
{

2
Debugger/ILSpy.Debugger/ToolTips/VirtualizingIEnumerable.cs

@ -5,7 +5,7 @@ using System; @@ -5,7 +5,7 @@ using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace ILSpy.Debugger.Tooltips
namespace ICSharpCode.ILSpy.Debugger.Tooltips
{
/// <summary>
/// A wrapper around IEnumerable&lt;T&gt; with AddNextItems method for pulling additional items

4
Debugger/ILSpy.Debugger/UI/AttachToProcessWindow.xaml

@ -1,6 +1,8 @@ @@ -1,6 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Window
x:Class="ILSpy.Debugger.UI.AttachToProcessWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="ICSharpCode.ILSpy.Debugger.UI.AttachToProcessWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Attach to process..."
WindowStartupLocation="CenterOwner"
WindowState="Normal"

4
Debugger/ILSpy.Debugger/UI/AttachToProcessWindow.xaml.cs

@ -9,9 +9,9 @@ using System.IO; @@ -9,9 +9,9 @@ using System.IO;
using System.Linq;
using System.Windows;
using ILSpy.Debugger.Models;
using ICSharpCode.ILSpy.Debugger.Models;
namespace ILSpy.Debugger.UI
namespace ICSharpCode.ILSpy.Debugger.UI
{
/// <summary>
/// Interaction logic for AttachToProcessWindow.xaml

2
ILSpy/App.xaml.cs

@ -65,7 +65,7 @@ namespace ICSharpCode.ILSpy @@ -65,7 +65,7 @@ namespace ICSharpCode.ILSpy
Languages.Initialize(compositionContainer);
if (!Debugger.IsAttached) {
if (!System.Diagnostics.Debugger.IsAttached) {
AppDomain.CurrentDomain.UnhandledException += ShowErrorBox;
Dispatcher.CurrentDispatcher.UnhandledException += Dispatcher_UnhandledException;
}

8
ILSpy/Commands/DebuggerCommands.cs

@ -11,10 +11,10 @@ using System.Windows.Interop; @@ -11,10 +11,10 @@ using System.Windows.Interop;
using System.Windows.Media;
using System.Xml.Linq;
using ILSpy.Debugger;
using ILSpy.Debugger.Bookmarks;
using ILSpy.Debugger.Services;
using ILSpy.Debugger.UI;
using ICSharpCode.ILSpy.Debugger;
using ICSharpCode.ILSpy.Debugger.Bookmarks;
using ICSharpCode.ILSpy.Debugger.Services;
using ICSharpCode.ILSpy.Debugger.UI;
using Microsoft.Win32;
namespace ICSharpCode.ILSpy.Commands

4
ILSpy/MainWindow.xaml.cs

@ -37,8 +37,8 @@ using ICSharpCode.ILSpy.TextView; @@ -37,8 +37,8 @@ using ICSharpCode.ILSpy.TextView;
using ICSharpCode.ILSpy.TreeNodes;
using ICSharpCode.ILSpy.TreeNodes.Analyzer;
using ICSharpCode.TreeView;
using ILSpy.Debugger;
using ILSpy.Debugger.Services;
using ICSharpCode.ILSpy.Debugger;
using ICSharpCode.ILSpy.Debugger.Services;
using Microsoft.Win32;
using Mono.Cecil;

2
ILSpy/Options/DebuggerSettingsPanel.xaml.cs

@ -12,7 +12,7 @@ using System.Windows.Input; @@ -12,7 +12,7 @@ using System.Windows.Input;
using System.Windows.Media;
using System.Xml.Linq;
using ILSpy.Debugger;
using ICSharpCode.ILSpy.Debugger;
namespace ICSharpCode.ILSpy.Options
{

12
ILSpy/TextView/DecompilerTextView.cs

@ -40,14 +40,14 @@ using ICSharpCode.AvalonEdit.Folding; @@ -40,14 +40,14 @@ using ICSharpCode.AvalonEdit.Folding;
using ICSharpCode.AvalonEdit.Highlighting;
using ICSharpCode.AvalonEdit.Highlighting.Xshd;
using ICSharpCode.Decompiler;
using ICSharpCode.ILSpy.Debugger;
using ICSharpCode.ILSpy.Debugger.AvalonEdit;
using ICSharpCode.ILSpy.Debugger.Bookmarks;
using ICSharpCode.ILSpy.Debugger.Tooltips;
using ICSharpCode.ILSpy.TreeNodes;
using ICSharpCode.NRefactory.Documentation;
using ILSpy.Debugger;
using ILSpy.Debugger.AvalonEdit;
using ILSpy.Debugger.Bookmarks;
using ILSpy.Debugger.Tooltips;
using Microsoft.Win32;
using TextEditorWeakEventManager = ILSpy.Debugger.AvalonEdit.TextEditorWeakEventManager;
using TextEditorWeakEventManager = ICSharpCode.ILSpy.Debugger.AvalonEdit.TextEditorWeakEventManager;
namespace ICSharpCode.ILSpy.TextView
{
@ -447,7 +447,7 @@ namespace ICSharpCode.ILSpy.TextView @@ -447,7 +447,7 @@ namespace ICSharpCode.ILSpy.TextView
Thread thread = new Thread(new ThreadStart(
delegate {
#if DEBUG
if (Debugger.IsAttached) {
if (System.Diagnostics.Debugger.IsAttached) {
try {
AvalonEditTextOutput textOutput = new AvalonEditTextOutput();
textOutput.LengthLimit = outputLengthLimit;

4
ILSpy/TreeNodes/TypeTreeNode.cs

@ -22,8 +22,8 @@ using System.Linq; @@ -22,8 +22,8 @@ using System.Linq;
using System.Windows.Media;
using ICSharpCode.Decompiler;
using ILSpy.Debugger;
using ILSpy.Debugger.AvalonEdit;
using ICSharpCode.ILSpy.Debugger;
using ICSharpCode.ILSpy.Debugger.AvalonEdit;
using Mono.Cecil;
namespace ICSharpCode.ILSpy.TreeNodes

Loading…
Cancel
Save