mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-14 22:33:35 +01:00
19 lines
415 B
C#
19 lines
415 B
C#
using System;
|
|
using System.IO;
|
|
using log4net.Config;
|
|
|
|
namespace WireMock.Net.StandAlone.Net452
|
|
{
|
|
public class Program
|
|
{
|
|
static void Main(params string[] args)
|
|
{
|
|
XmlConfigurator.Configure(new FileInfo("log4net.config"));
|
|
|
|
StandAloneApp.Start(args);
|
|
|
|
Console.WriteLine("Press any key to stop the server");
|
|
Console.ReadKey();
|
|
}
|
|
}
|
|
} |