mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-13 15:13:31 +01:00
* net451 * tests : net462 * fixed tests * fix tests * readme * Code review * LocalFileSystemHandlerTests * refactor
15 lines
291 B
C#
15 lines
291 B
C#
using System.IO;
|
|
using log4net.Config;
|
|
|
|
namespace WireMock.Net.ConsoleApplication
|
|
{
|
|
static class Program
|
|
{
|
|
static void Main(params string[] args)
|
|
{
|
|
XmlConfigurator.Configure(new FileInfo("log4net.config"));
|
|
|
|
MainApp.Run();
|
|
}
|
|
}
|
|
} |