Index: Core/Plugins/src/Core.Plugins.ProjectExplorer/Core.Plugins.ProjectExplorer.csproj
===================================================================
diff -u -rd993e5ebe5851ea9c65753d8709d73a926a24afd -r2247cb12b320db2490950094f19ae92ad546c35c
--- Core/Plugins/src/Core.Plugins.ProjectExplorer/Core.Plugins.ProjectExplorer.csproj (.../Core.Plugins.ProjectExplorer.csproj) (revision d993e5ebe5851ea9c65753d8709d73a926a24afd)
+++ Core/Plugins/src/Core.Plugins.ProjectExplorer/Core.Plugins.ProjectExplorer.csproj (.../Core.Plugins.ProjectExplorer.csproj) (revision 2247cb12b320db2490950094f19ae92ad546c35c)
@@ -26,12 +26,6 @@
-
- MSBuild:Compile
- Designer
-
-
-
True
True
Index: Core/Plugins/src/Core.Plugins.ProjectExplorer/ProjectExplorerPlugin.cs
===================================================================
diff -u -rcbde09a1860a8a4480b958d6671de3480b995886 -r2247cb12b320db2490950094f19ae92ad546c35c
--- Core/Plugins/src/Core.Plugins.ProjectExplorer/ProjectExplorerPlugin.cs (.../ProjectExplorerPlugin.cs) (revision cbde09a1860a8a4480b958d6671de3480b995886)
+++ Core/Plugins/src/Core.Plugins.ProjectExplorer/ProjectExplorerPlugin.cs (.../ProjectExplorerPlugin.cs) (revision 2247cb12b320db2490950094f19ae92ad546c35c)
@@ -26,9 +26,7 @@
using Core.Common.Controls.TreeView;
using Core.Common.Gui;
using Core.Common.Gui.Commands;
-using Core.Common.Gui.Forms;
using Core.Common.Gui.Plugin;
-using Core.Plugins.ProjectExplorer.Commands;
using Core.Plugins.ProjectExplorer.Exceptions;
using ProjectExplorerResources = Core.Plugins.ProjectExplorer.Properties.Resources;
@@ -43,18 +41,9 @@
private ProjectExplorerViewController projectExplorerViewController;
private IViewCommands viewCommands;
private IProjectOwner projectOwner;
- private Ribbon ribbonCommandHandler;
private IEnumerable treeNodeInfos;
private bool active;
- public override IRibbonCommandHandler RibbonCommandHandler
- {
- get
- {
- return ribbonCommandHandler;
- }
- }
-
public override IGui Gui
{
get
@@ -109,11 +98,6 @@
throw new PluginActivationException(message, e);
}
- ribbonCommandHandler = new Ribbon
- {
- ToggleExplorerCommand = new ToggleProjectExplorerCommand(projectExplorerViewController)
- };
-
projectExplorerViewController.OnOpenView += (s, e) => UpdateProject();
projectExplorerViewController.ToggleView();
Index: Core/Plugins/src/Core.Plugins.ProjectExplorer/Properties/Resources.Designer.cs
===================================================================
diff -u -rcbde09a1860a8a4480b958d6671de3480b995886 -r2247cb12b320db2490950094f19ae92ad546c35c
--- Core/Plugins/src/Core.Plugins.ProjectExplorer/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision cbde09a1860a8a4480b958d6671de3480b995886)
+++ Core/Plugins/src/Core.Plugins.ProjectExplorer/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 2247cb12b320db2490950094f19ae92ad546c35c)
@@ -40,7 +40,7 @@
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class Resources {
@@ -117,23 +117,5 @@
return ResourceManager.GetString("ProjectExplorerPlugin_Cannot_activate_0_twice", resourceCulture);
}
}
-
- ///
- /// Looks up a localized string similar to Weergeven/Verbergen.
- ///
- public static string Ribbon_GroupBox_ShowHide {
- get {
- return ResourceManager.GetString("Ribbon_GroupBox_ShowHide", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Beeld.
- ///
- public static string Ribbon_TabItem_View {
- get {
- return ResourceManager.GetString("Ribbon_TabItem_View", resourceCulture);
- }
- }
}
}
Index: Core/Plugins/src/Core.Plugins.ProjectExplorer/Properties/Resources.resx
===================================================================
diff -u -r1eed3e3f652618c52a462edc502cfd4250772314 -r2247cb12b320db2490950094f19ae92ad546c35c
--- Core/Plugins/src/Core.Plugins.ProjectExplorer/Properties/Resources.resx (.../Resources.resx) (revision 1eed3e3f652618c52a462edc502cfd4250772314)
+++ Core/Plugins/src/Core.Plugins.ProjectExplorer/Properties/Resources.resx (.../Resources.resx) (revision 2247cb12b320db2490950094f19ae92ad546c35c)
@@ -121,15 +121,9 @@
..\resources\folder_wrench.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- Weergeven/Verbergen
-
Projectverkenner
-
- Beeld
-
Het starten van de {0} is mislukt.
Fisheye: Tag 2247cb12b320db2490950094f19ae92ad546c35c refers to a dead (removed) revision in file `Core/Plugins/src/Core.Plugins.ProjectExplorer/Ribbon.xaml'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 2247cb12b320db2490950094f19ae92ad546c35c refers to a dead (removed) revision in file `Core/Plugins/src/Core.Plugins.ProjectExplorer/Ribbon.xaml.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: Core/Plugins/test/Core.Plugins.ProjectExplorer.Test/Core.Plugins.ProjectExplorer.Test.csproj
===================================================================
diff -u -r08e8d26a0715f0f3db57c1d3e86256aa06934db4 -r2247cb12b320db2490950094f19ae92ad546c35c
--- Core/Plugins/test/Core.Plugins.ProjectExplorer.Test/Core.Plugins.ProjectExplorer.Test.csproj (.../Core.Plugins.ProjectExplorer.Test.csproj) (revision 08e8d26a0715f0f3db57c1d3e86256aa06934db4)
+++ Core/Plugins/test/Core.Plugins.ProjectExplorer.Test/Core.Plugins.ProjectExplorer.Test.csproj (.../Core.Plugins.ProjectExplorer.Test.csproj) (revision 2247cb12b320db2490950094f19ae92ad546c35c)
@@ -14,13 +14,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
Fisheye: Tag 2247cb12b320db2490950094f19ae92ad546c35c refers to a dead (removed) revision in file `Core/Plugins/test/Core.Plugins.ProjectExplorer.Test/RibbonTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?