begun working on recrowned athenaeum tools.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
18
RecrownedAthenaeum.ConsoleTools/ConsoleTools.cs
Normal file
18
RecrownedAthenaeum.ConsoleTools/ConsoleTools.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,8 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
Reference in New Issue
Block a user