Files
Stef Heyenrath 7111ab384b 1.0.2.1
2017-06-14 12:59:01 +02:00

16 lines
322 B
C#

using System;
using WireMock.Net.StandAlone;
namespace WireMock.Net.ConsoleTest.Net452
{
class Program
{
static void Main(string[] args)
{
StandAloneApp.Start(args);
Console.WriteLine("Press any key to stop the server");
Console.ReadKey();
}
}
}