diff --git a/ILSpy/Commands/ShowDebugSteps.cs b/ILSpy/Commands/ShowDebugSteps.cs
deleted file mode 100644
index 21f1c069e..000000000
--- a/ILSpy/Commands/ShowDebugSteps.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-#if DEBUG
-
-using ICSharpCode.ILSpy.Docking;
-using ICSharpCode.ILSpy.Properties;
-using ICSharpCode.ILSpy.ViewModels;
-
-namespace ICSharpCode.ILSpy.Commands
-{
- [ExportMainMenuCommand(Menu = nameof(Resources._View), Header = nameof(Resources._ShowDebugSteps), MenuOrder = 5000)]
- class ShowDebugSteps : SimpleCommand
- {
- public override void Execute(object parameter)
- {
- DockWorkspace.Instance.ShowToolPane(DebugStepsPaneModel.PaneContentId);
- }
- }
-}
-#endif
\ No newline at end of file
diff --git a/ILSpy/Commands/ShowPane.cs b/ILSpy/Commands/ShowPane.cs
new file mode 100644
index 000000000..2a5b14030
--- /dev/null
+++ b/ILSpy/Commands/ShowPane.cs
@@ -0,0 +1,35 @@
+using ICSharpCode.ILSpy.Docking;
+using ICSharpCode.ILSpy.Properties;
+using ICSharpCode.ILSpy.ViewModels;
+
+namespace ICSharpCode.ILSpy.Commands
+{
+ [ExportMainMenuCommand(Menu = nameof(Resources._Window), Header = nameof(Resources._Assemblies), MenuCategory = "pane", MenuOrder = 5000)]
+ class ShowAssemblies : SimpleCommand
+ {
+ public override void Execute(object parameter)
+ {
+ DockWorkspace.Instance.ShowToolPane(AssemblyListPaneModel.PaneContentId);
+ }
+ }
+
+ [ExportMainMenuCommand(Menu = nameof(Resources._Window), Header = nameof(Resources._Analyzer), MenuCategory = "pane", MenuOrder = 5000)]
+ class ShowAnalyzer : SimpleCommand
+ {
+ public override void Execute(object parameter)
+ {
+ DockWorkspace.Instance.ShowToolPane(AnalyzerPaneModel.PaneContentId);
+ }
+ }
+
+#if DEBUG
+ [ExportMainMenuCommand(Menu = nameof(Resources._Window), Header = nameof(Resources._ShowDebugSteps), MenuCategory = "pane", MenuOrder = 5000)]
+ class ShowDebugSteps : SimpleCommand
+ {
+ public override void Execute(object parameter)
+ {
+ DockWorkspace.Instance.ShowToolPane(DebugStepsPaneModel.PaneContentId);
+ }
+ }
+#endif
+}
\ No newline at end of file
diff --git a/ILSpy/ILSpy.csproj b/ILSpy/ILSpy.csproj
index 7ade3618d..d0b19b041 100644
--- a/ILSpy/ILSpy.csproj
+++ b/ILSpy/ILSpy.csproj
@@ -134,6 +134,6 @@
-
+
diff --git a/ILSpy/MainWindow.xaml b/ILSpy/MainWindow.xaml
index 36b0649f0..8a20d45cb 100644
--- a/ILSpy/MainWindow.xaml
+++ b/ILSpy/MainWindow.xaml
@@ -107,7 +107,7 @@
-