From f96b49bce4e7282e56b27c4c4302f79fa5ce0390 Mon Sep 17 00:00:00 2001
From: moitoius_cp <7bd20ad30720b36bd251fb928c419f8754d57bfcCkJyHhZD>
Date: Wed, 2 Jan 2008 12:26:25 +0000
Subject: [PATCH] Cleanup and rename before I start working on the built in
commands.
---
.../Commands/{ICommand.cs => BaseCommand.cs} | 0
.../Commands/{FSTestCommand.cs => TypeCommand.cs} | 2 +-
.../Cosmos/Cosmos.Shell.Console/Cosmos.Shell.Console.csproj | 4 ++--
source/Cosmos/Cosmos.Shell.Console/Prompter.cs | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
rename source/Cosmos/Cosmos.Shell.Console/Commands/{ICommand.cs => BaseCommand.cs} (100%)
rename source/Cosmos/Cosmos.Shell.Console/Commands/{FSTestCommand.cs => TypeCommand.cs} (93%)
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)
{