mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-12 03:01:32 +00:00
Cleanup and rename before I start working on the built in commands.
This commit is contained in:
parent
68f8113839
commit
f96b49bce4
4 changed files with 4 additions and 4 deletions
|
|
@ -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";
|
||||
|
|
@ -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" />
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue