Last active
August 29, 2015 14:25
-
-
Save dcomartin/a86f8052170d4cb4b323 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public partial class SelfHostServiceBase : ServiceBase | |
{ | |
private IDisposable _webapp; | |
public SelfHostServiceBase() | |
{ | |
InitializeComponent(); | |
} | |
protected override void OnStart(string[] args) | |
{ | |
_webapp = WebApp.Start<Startup>("http://localhost:8080"); | |
} | |
protected override void OnStop() | |
{ | |
_webapp?.Dispose(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment