Cleanup and rename before I start working on the built in commands.

This commit is contained in:
moitoius_cp 2008-01-02 12:26:25 +00:00
parent 68f8113839
commit f96b49bce4
4 changed files with 4 additions and 4 deletions

View file

@ -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";

View file

@ -42,8 +42,8 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Commands\FSTestCommand.cs" />
<Compile Include="Commands\ICommand.cs" />
<Compile Include="Commands\TypeCommand.cs" />
<Compile Include="Commands\BaseCommand.cs" />
<Compile Include="Program.cs" />
<Compile Include="Prompter.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />

View file

@ -25,7 +25,7 @@ namespace Cosmos.Shell.Console {
public override void Initialize() {
_commands = new List<Cosmos.Shell.Console.Commands.CommandBase>();
_commands.Add(new Commands.FSTestCommand());
_commands.Add(new Commands.TypeCommand());
while (running)
{