mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-15 06:43:37 +01:00
16 lines
322 B
C#
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();
|
|
}
|
|
}
|
|
} |