Skip to content

Commit

Permalink
Update package names.
Browse files Browse the repository at this point in the history
  • Loading branch information
kjerk committed Nov 29, 2018
1 parent 9a8261b commit e7be667
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions PowerJump/Commands/AddCommand.cs
Original file line number Diff line number Diff line change
@@ -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")]
Expand Down
4 changes: 2 additions & 2 deletions PowerJump/Commands/EditCommand.cs
Original file line number Diff line number Diff line change
@@ -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")]
Expand Down
4 changes: 2 additions & 2 deletions PowerJump/Commands/ImportCommand.cs
Original file line number Diff line number Diff line change
@@ -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")]
Expand Down
4 changes: 2 additions & 2 deletions PowerJump/Commands/JumpCommand.cs
Original file line number Diff line number Diff line change
@@ -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")]
Expand Down
4 changes: 2 additions & 2 deletions PowerJump/Commands/ListCommand.cs
Original file line number Diff line number Diff line change
@@ -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")]
Expand Down
4 changes: 2 additions & 2 deletions PowerJump/Commands/RemoveCommand.cs
Original file line number Diff line number Diff line change
@@ -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")]
Expand Down
4 changes: 2 additions & 2 deletions PowerJump/Commands/SaveCommand.cs
Original file line number Diff line number Diff line change
@@ -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")]
Expand Down
2 changes: 1 addition & 1 deletion PowerJump/Data/JumpLookup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Linq;
using fastJSON;

namespace Core.Data
namespace PowerJump.Data
{
internal class JumpLookup
{
Expand Down

0 comments on commit e7be667

Please sign in to comment.