From 7c283bd7ef12795cdb8256a58f0596ae484f53a1 Mon Sep 17 00:00:00 2001 From: Siegfried Pammer Date: Sun, 5 Jun 2016 16:53:39 +0900 Subject: [PATCH] move CheckForUpdates.cs to Commands folder --- .../CheckForUpdatesCommand.cs} | 7 +------ ILSpy/ILSpy.csproj | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) rename ILSpy/{CheckForUpdates.cs => Commands/CheckForUpdatesCommand.cs} (89%) diff --git a/ILSpy/CheckForUpdates.cs b/ILSpy/Commands/CheckForUpdatesCommand.cs similarity index 89% rename from ILSpy/CheckForUpdates.cs rename to ILSpy/Commands/CheckForUpdatesCommand.cs index ed1adbfd1..4dd3f37e8 100644 --- a/ILSpy/CheckForUpdates.cs +++ b/ILSpy/Commands/CheckForUpdatesCommand.cs @@ -17,16 +17,11 @@ // DEALINGS IN THE SOFTWARE. using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows; namespace ICSharpCode.ILSpy { [ExportMainMenuCommand(Menu = "_Help", Header = "_Check for Updates", MenuOrder = 5000)] - sealed class CheckForUpdates : SimpleCommand + sealed class CheckForUpdatesCommand : SimpleCommand { public override void Execute(object parameter) { diff --git a/ILSpy/ILSpy.csproj b/ILSpy/ILSpy.csproj index cc72c5403..f2a2334a6 100644 --- a/ILSpy/ILSpy.csproj +++ b/ILSpy/ILSpy.csproj @@ -101,7 +101,7 @@ - +