Browse Source

Prepare new AppEnv namespace that will house all application environment code (configuration and runtime)

pull/3212/head
Christoph Wille 12 months ago
parent
commit
e64795aad8
  1. 1
      ILSpy/App.xaml.cs
  2. 2
      ILSpy/AppEnv/CommandLineArguments.cs
  3. 2
      ILSpy/AppEnv/CommandLineTools.cs
  4. 1
      ILSpy/Commands/ScopeSearchToAssembly.cs
  5. 1
      ILSpy/Commands/ScopeSearchToNamespace.cs
  6. 1
      ILSpy/MainWindow.xaml.cs
  7. 1
      ILSpy/Options/MiscSettingsViewModel.cs
  8. 1
      ILSpy/Search/SearchPane.cs

1
ILSpy/App.xaml.cs

@ -30,6 +30,7 @@ using System.Windows.Documents; @@ -30,6 +30,7 @@ using System.Windows.Documents;
using System.Windows.Navigation;
using System.Windows.Threading;
using ICSharpCode.ILSpy.AppEnv;
using ICSharpCode.ILSpy.Options;
using ICSharpCode.ILSpyX.Analyzers;
using ICSharpCode.ILSpyX.Settings;

2
ILSpy/CommandLineArguments.cs → ILSpy/AppEnv/CommandLineArguments.cs

@ -21,7 +21,7 @@ using McMaster.Extensions.CommandLineUtils; @@ -21,7 +21,7 @@ using McMaster.Extensions.CommandLineUtils;
using System.Collections.Generic;
using System.Linq;
namespace ICSharpCode.ILSpy
namespace ICSharpCode.ILSpy.AppEnv
{
public sealed class CommandLineArguments
{

2
ILSpy/CommandLineTools.cs → ILSpy/AppEnv/CommandLineTools.cs

@ -20,7 +20,7 @@ using System; @@ -20,7 +20,7 @@ using System;
using System.Collections.Generic;
using System.Text;
namespace ICSharpCode.ILSpy
namespace ICSharpCode.ILSpy.AppEnv
{
public class CommandLineTools
{

1
ILSpy/Commands/ScopeSearchToAssembly.cs

@ -20,6 +20,7 @@ @@ -20,6 +20,7 @@
using System;
using ICSharpCode.Decompiler.TypeSystem;
using ICSharpCode.ILSpy.AppEnv;
using ICSharpCode.ILSpy.Properties;
using ICSharpCode.ILSpy.TreeNodes;

1
ILSpy/Commands/ScopeSearchToNamespace.cs

@ -18,6 +18,7 @@ @@ -18,6 +18,7 @@
using System;
using ICSharpCode.Decompiler.TypeSystem;
using ICSharpCode.ILSpy.AppEnv;
using ICSharpCode.ILSpy.Properties;
using ICSharpCode.ILSpy.TreeNodes;

1
ILSpy/MainWindow.xaml.cs

@ -44,6 +44,7 @@ using ICSharpCode.Decompiler.Metadata; @@ -44,6 +44,7 @@ using ICSharpCode.Decompiler.Metadata;
using ICSharpCode.Decompiler.TypeSystem;
using ICSharpCode.Decompiler.TypeSystem.Implementation;
using ICSharpCode.ILSpy.Analyzers;
using ICSharpCode.ILSpy.AppEnv;
using ICSharpCode.ILSpy.Commands;
using ICSharpCode.ILSpy.Docking;
using ICSharpCode.ILSpy.Options;

1
ILSpy/Options/MiscSettingsViewModel.cs

@ -24,6 +24,7 @@ using System.Runtime.CompilerServices; @@ -24,6 +24,7 @@ using System.Runtime.CompilerServices;
using System.Windows;
using System.Windows.Input;
using ICSharpCode.ILSpy.AppEnv;
using ICSharpCode.ILSpy.Commands;
using ICSharpCode.ILSpyX.Settings;

1
ILSpy/Search/SearchPane.cs

@ -32,6 +32,7 @@ using System.Windows.Input; @@ -32,6 +32,7 @@ using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Threading;
using ICSharpCode.ILSpy.AppEnv;
using ICSharpCode.ILSpy.Docking;
using ICSharpCode.ILSpy.ViewModels;
using ICSharpCode.ILSpyX;

Loading…
Cancel
Save