Browse Source

Move CopyFullyQualifiedNameContextMenuEntry and SearchMsdnContextMenuEntry to Commands folder.

pull/1716/head
Siegfried Pammer 7 years ago
parent
commit
988a351498
  1. 3
      ILSpy/Commands/CopyFullyQualifiedNameContextMenuEntry.cs
  2. 3
      ILSpy/Commands/SearchMsdnContextMenuEntry.cs
  3. 4
      ILSpy/ILSpy.csproj

3
ILSpy/TreeNodes/CopyFullyQualifiedNameContextMenuEntry.cs → ILSpy/Commands/CopyFullyQualifiedNameContextMenuEntry.cs

@ -3,8 +3,9 @@ using System.Windows; @@ -3,8 +3,9 @@ using System.Windows;
using ICSharpCode.Decompiler;
using ICSharpCode.Decompiler.Metadata;
using ICSharpCode.Decompiler.TypeSystem;
using ICSharpCode.ILSpy.TreeNodes;
namespace ICSharpCode.ILSpy.TreeNodes
namespace ICSharpCode.ILSpy
{
[ExportContextMenuEntry(Header = "Copy FQ Name", Icon = "images/Copy.png", Order = 9999)]
public class CopyFullyQualifiedNameContextMenuEntry : IContextMenuEntry

3
ILSpy/TreeNodes/SearchMsdnContextMenuEntry.cs → ILSpy/Commands/SearchMsdnContextMenuEntry.cs

@ -18,8 +18,9 @@ @@ -18,8 +18,9 @@
using System.Linq;
using ICSharpCode.Decompiler.TypeSystem;
using ICSharpCode.ILSpy.TreeNodes;
namespace ICSharpCode.ILSpy.TreeNodes
namespace ICSharpCode.ILSpy
{
[ExportContextMenuEntry(Header = "Search MSDN...", Icon = "images/SearchMsdn.png", Order = 9999)]
internal sealed class SearchMsdnContextMenuEntry : IContextMenuEntry

4
ILSpy/ILSpy.csproj

@ -222,7 +222,7 @@ @@ -222,7 +222,7 @@
<Compile Include="Analyzers\AnalyzerTreeNode.cs" />
<Compile Include="Analyzers\RemoveAnalyzeContextMenuEntry.cs" />
<Compile Include="TreeNodes\BaseTypesEntryNode.cs" />
<Compile Include="TreeNodes\CopyFullyQualifiedNameContextMenuEntry.cs" />
<Compile Include="Commands\CopyFullyQualifiedNameContextMenuEntry.cs" />
<Compile Include="TreeNodes\DerivedTypesEntryNode.cs" />
<Compile Include="TreeNodes\FilterResult.cs" />
<Compile Include="Commands\GeneratePdbContextMenuEntry.cs" />
@ -238,7 +238,7 @@ @@ -238,7 +238,7 @@
<Compile Include="TreeNodes\ResourceNodes\ResourceTreeNode.cs" />
<Compile Include="TreeNodes\ResourceNodes\XamlResourceNode.cs" />
<Compile Include="TreeNodes\ResourceNodes\XmlResourceNode.cs" />
<Compile Include="TreeNodes\SearchMsdnContextMenuEntry.cs" />
<Compile Include="Commands\SearchMsdnContextMenuEntry.cs" />
<Compile Include="Analyzers\Builtin\TypeExtensionMethodsAnalyzer.cs" />
<EmbeddedResource Include="..\doc\LGPL.txt">
<Link>LGPL.txt</Link>

Loading…
Cancel
Save