diff --git a/WireMock-as-a-standalone-process.md b/WireMock-as-a-standalone-process.md index e281512..8d26de2 100644 --- a/WireMock-as-a-standalone-process.md +++ b/WireMock-as-a-standalone-process.md @@ -23,9 +23,12 @@ class Program static void Main(string[] args) { // see source code for all the possible properties - var settings = new FluentMockServerSettings { }; - bool allowPartialMapping = true; - StandAloneApp.Start(settings, allowPartialMapping); + var settings = new FluentMockServerSettings + { + AllowPartialMapping=true, + StartAdminInterface=true + }; + StandAloneApp.Start(settings); Console.WriteLine("Press any key to stop the server"); Console.ReadKey();