mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2024-11-11 19:04:38 +00:00
24 lines
504 B
C#
24 lines
504 B
C#
|
// <copyright file="Program.cs" company="Adrian Conlon">
|
|||
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|||
|
// </copyright>
|
|||
|
|
|||
|
namespace EightBit
|
|||
|
{
|
|||
|
public static class Program
|
|||
|
{
|
|||
|
public static void Main(string[] args)
|
|||
|
{
|
|||
|
var configuration = new Configuration();
|
|||
|
|
|||
|
#if DEBUG
|
|||
|
configuration.DebugMode = true;
|
|||
|
#endif
|
|||
|
|
|||
|
using (var harness = new TestHarness(configuration))
|
|||
|
{
|
|||
|
harness.Run();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|