Browse Source

Add ICSharpCode prefix.

pull/191/merge
Eusebiu Marcu 15 years ago
parent
commit
3e7de05b98
  1. 2
      Debugger/ILSpy.Debugger/ToolTips/PinControlsDictionary.xaml
  2. 2
      Debugger/ILSpy.Debugger/ToolTips/VisualizerPicker.xaml
  3. 2
      Debugger/ILSpy.Debugger/UI/AttachToProcessWindow.xaml.cs

2
Debugger/ILSpy.Debugger/ToolTips/PinControlsDictionary.xaml

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:ILSpy.Debugger.Tooltips"
xmlns:local="clr-namespace:ICSharpCode.ILSpy.Debugger.Tooltips"
>
<LinearGradientBrush x:Key="OrangeBrushKey" EndPoint="0,1" StartPoint="0,0">
<LinearGradientBrush.GradientStops>

2
Debugger/ILSpy.Debugger/ToolTips/VisualizerPicker.xaml

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Microsoft_Windows_Themes="clr-namespace:Microsoft.Windows.Themes;assembly=PresentationFramework.Aero"
xmlns:debugging="clr-namespace:ILSpy.Debugger.Tooltips"
xmlns:debugging="clr-namespace:ICSharpCode.ILSpy.Debugger.Tooltips"
xmlns:core="http://icsharpcode.net/sharpdevelop/core">
<Style x:Key="ComboBoxFocusVisual">
<Setter Property="Control.Template">

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

@ -47,7 +47,7 @@ namespace ICSharpCode.ILSpy.Debugger.UI @@ -47,7 +47,7 @@ namespace ICSharpCode.ILSpy.Debugger.UI
bool managed = false;
try {
var modules = process.Modules.Cast<ProcessModule>().Where(
m => m.ModuleName.StartsWith("mscor", StringComparison.InvariantCultureIgnoreCase));
m => m.ModuleName.StartsWith("mscor", StringComparison.OrdinalIgnoreCase));
managed = modules.Count() > 0;
} catch { }

Loading…
Cancel
Save