From e7be667892b0db9b68bc15ddd81cdad434346cbf Mon Sep 17 00:00:00 2001 From: kjerk Date: Thu, 29 Nov 2018 14:47:04 -0800 Subject: [PATCH] Update package names. --- PowerJump/Commands/AddCommand.cs | 4 ++-- PowerJump/Commands/EditCommand.cs | 4 ++-- PowerJump/Commands/ImportCommand.cs | 4 ++-- PowerJump/Commands/JumpCommand.cs | 4 ++-- PowerJump/Commands/ListCommand.cs | 4 ++-- PowerJump/Commands/RemoveCommand.cs | 4 ++-- PowerJump/Commands/SaveCommand.cs | 4 ++-- PowerJump/Data/JumpLookup.cs | 2 +- 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/PowerJump/Commands/AddCommand.cs b/PowerJump/Commands/AddCommand.cs index c663815..81e4e55 100644 --- a/PowerJump/Commands/AddCommand.cs +++ b/PowerJump/Commands/AddCommand.cs @@ -1,8 +1,8 @@ using System; using System.Management.Automation; -using Core.Data; +using PowerJump.Data; -namespace Core.Commands +namespace PowerJump.Commands { [Cmdlet(VerbsCommon.Add, "Jump")] [Alias("mark")] diff --git a/PowerJump/Commands/EditCommand.cs b/PowerJump/Commands/EditCommand.cs index e485a79..b66e083 100644 --- a/PowerJump/Commands/EditCommand.cs +++ b/PowerJump/Commands/EditCommand.cs @@ -1,8 +1,8 @@ using System.Diagnostics; using System.Management.Automation; -using Core.Data; +using PowerJump.Data; -namespace Core.Commands +namespace PowerJump.Commands { [Cmdlet(VerbsData.Edit, "Jumps")] [Alias("editjumps")] diff --git a/PowerJump/Commands/ImportCommand.cs b/PowerJump/Commands/ImportCommand.cs index cde4dcd..6a98630 100644 --- a/PowerJump/Commands/ImportCommand.cs +++ b/PowerJump/Commands/ImportCommand.cs @@ -1,7 +1,7 @@ using System.Management.Automation; -using Core.Data; +using PowerJump.Data; -namespace Core.Commands +namespace PowerJump.Commands { [Cmdlet(VerbsData.Import, "Jumps")] [Alias("loadjumps")] diff --git a/PowerJump/Commands/JumpCommand.cs b/PowerJump/Commands/JumpCommand.cs index 36f18bd..968a716 100644 --- a/PowerJump/Commands/JumpCommand.cs +++ b/PowerJump/Commands/JumpCommand.cs @@ -1,8 +1,8 @@ using System; using System.Management.Automation; -using Core.Data; +using PowerJump.Data; -namespace Core.Commands +namespace PowerJump.Commands { [Cmdlet(VerbsCommon.Find, "Jump")] [Alias("jump", "j")] diff --git a/PowerJump/Commands/ListCommand.cs b/PowerJump/Commands/ListCommand.cs index 066c3c9..c9dfdd7 100644 --- a/PowerJump/Commands/ListCommand.cs +++ b/PowerJump/Commands/ListCommand.cs @@ -1,9 +1,9 @@ using System; using System.Linq; using System.Management.Automation; -using Core.Data; +using PowerJump.Data; -namespace Core.Commands +namespace PowerJump.Commands { [Cmdlet(VerbsCommon.Get, "Jumps")] [Alias("jumps")] diff --git a/PowerJump/Commands/RemoveCommand.cs b/PowerJump/Commands/RemoveCommand.cs index d05997a..fcd935c 100644 --- a/PowerJump/Commands/RemoveCommand.cs +++ b/PowerJump/Commands/RemoveCommand.cs @@ -1,8 +1,8 @@ using System; using System.Management.Automation; -using Core.Data; +using PowerJump.Data; -namespace Core.Commands +namespace PowerJump.Commands { [Cmdlet(VerbsCommon.Remove, "Jump")] [Alias("unmark")] diff --git a/PowerJump/Commands/SaveCommand.cs b/PowerJump/Commands/SaveCommand.cs index 4978a81..560f2ed 100644 --- a/PowerJump/Commands/SaveCommand.cs +++ b/PowerJump/Commands/SaveCommand.cs @@ -1,7 +1,7 @@ using System.Management.Automation; -using Core.Data; +using PowerJump.Data; -namespace Core.Commands +namespace PowerJump.Commands { [Cmdlet(VerbsData.Save, "Jumps")] [Alias("savejumps")] diff --git a/PowerJump/Data/JumpLookup.cs b/PowerJump/Data/JumpLookup.cs index d356c92..4a0b266 100644 --- a/PowerJump/Data/JumpLookup.cs +++ b/PowerJump/Data/JumpLookup.cs @@ -4,7 +4,7 @@ using System.Linq; using fastJSON; -namespace Core.Data +namespace PowerJump.Data { internal class JumpLookup {