mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-11 22:30:41 +01:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
16 lines
284 B
C#
16 lines
284 B
C#
// Copyright © WireMock.Net
|
|
|
|
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();
|
|
}
|
|
} |