diff --git a/source/Cosmos/Cosmos.Shell.Console/Commands/ICommand.cs b/source/Cosmos/Cosmos.Shell.Console/Commands/BaseCommand.cs
similarity index 100%
rename from source/Cosmos/Cosmos.Shell.Console/Commands/ICommand.cs
rename to source/Cosmos/Cosmos.Shell.Console/Commands/BaseCommand.cs
diff --git a/source/Cosmos/Cosmos.Shell.Console/Commands/FSTestCommand.cs b/source/Cosmos/Cosmos.Shell.Console/Commands/TypeCommand.cs
similarity index 93%
rename from source/Cosmos/Cosmos.Shell.Console/Commands/FSTestCommand.cs
rename to source/Cosmos/Cosmos.Shell.Console/Commands/TypeCommand.cs
index c18470ea6..db9c3eec2 100644
--- a/source/Cosmos/Cosmos.Shell.Console/Commands/FSTestCommand.cs
+++ b/source/Cosmos/Cosmos.Shell.Console/Commands/TypeCommand.cs
@@ -4,7 +4,7 @@ using System.Text;
using Cosmos.Kernel;
namespace Cosmos.Shell.Console.Commands {
- public class FSTestCommand : CommandBase {
+ public class TypeCommand : CommandBase {
public override string Name {
get {
return "type";
diff --git a/source/Cosmos/Cosmos.Shell.Console/Cosmos.Shell.Console.csproj b/source/Cosmos/Cosmos.Shell.Console/Cosmos.Shell.Console.csproj
index 6d5678ab2..ed37bda72 100644
--- a/source/Cosmos/Cosmos.Shell.Console/Cosmos.Shell.Console.csproj
+++ b/source/Cosmos/Cosmos.Shell.Console/Cosmos.Shell.Console.csproj
@@ -42,8 +42,8 @@
-
-
+
+
diff --git a/source/Cosmos/Cosmos.Shell.Console/Prompter.cs b/source/Cosmos/Cosmos.Shell.Console/Prompter.cs
index 80685717a..d7ba326e9 100644
--- a/source/Cosmos/Cosmos.Shell.Console/Prompter.cs
+++ b/source/Cosmos/Cosmos.Shell.Console/Prompter.cs
@@ -25,7 +25,7 @@ namespace Cosmos.Shell.Console {
public override void Initialize() {
_commands = new List();
- _commands.Add(new Commands.FSTestCommand());
+ _commands.Add(new Commands.TypeCommand());
while (running)
{