begun working on recrowned athenaeum tools.

This commit is contained in:
2018-12-05 15:44:26 -06:00
parent dde2c3dadf
commit 10a3faacf7
4 changed files with 56 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace RecrownedAthenaeum.ConsoleTools.CommandProcessor
{
internal class CommandEngine
{
public bool running;
public void Process(string command)
{
}
internal void Run()
{
while (running)
{
string command = Console.ReadLine();
Process(command);
}
}
}
}

View File

@@ -0,0 +1,18 @@
using RecrownedAthenaeum.ConsoleTools.CommandProcessor;
using System;
using System.Reflection;
namespace RecrownedAthenaeum.ConsoleTools
{
internal class ConsoleTools
{
static void Main(string[] args)
{
Console.WriteLine("Recrowned Athenaeum Console Tools version " + Assembly.GetExecutingAssembly().GetName().Version.ToString());
bool running = true;
CommandEngine ce = new CommandEngine();
ce.Run();
}
}
}

View File

@@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>
</Project>