This commit is contained in:
Stef Heyenrath
2017-06-14 12:59:01 +02:00
parent 0670cbc54c
commit 7111ab384b
7 changed files with 189 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
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();
}
}
}