Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Last active August 29, 2015 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcomartin/a86f8052170d4cb4b323 to your computer and use it in GitHub Desktop.
Save dcomartin/a86f8052170d4cb4b323 to your computer and use it in GitHub Desktop.
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