33 lines
760 B
C#
33 lines
760 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AutomatedROMTools
|
|
{
|
|
/// <summary>
|
|
/// The Main Program Class.
|
|
/// </summary>
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
// Create a new program object.
|
|
AutomatedROMTools ART = new AutomatedROMTools();
|
|
|
|
// Input the variables passed from the command line arguments.
|
|
ART.SetVariablesFromCLI(args);
|
|
|
|
// Print the version.
|
|
ART.PrintVersion();
|
|
|
|
// Process the command switch.
|
|
ART.ProcessCommandSwitch();
|
|
|
|
// Output the log to a text file.
|
|
ART.SaveLog();
|
|
}
|
|
}
|
|
}
|