public void Setup(WebAppWrapper webAppWrapper)
        {
            // ensure nothing is running on the port
            ProcManager.KillByPort(webAppWrapper.HttpsPort);

            // ensure the output directory to which we'll publish is empty
            DirManager.DeleteAndRecreate(webAppWrapper.OutputPath);

            // publish and run the specified webApp
            webAppWrapper.ProcWrapper = PublishAndRun(webAppWrapper);
        }