Created
February 13, 2016 20:01
-
-
Save mikebranstein/7d068b2928db8cba5ab9 to your computer and use it in GitHub Desktop.
windows service startup for hangfire dashboard
This file contains hidden or 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
| using Microsoft.Owin; | |
| using Owin; | |
| using Hangfire; | |
| [assembly: OwinStartup(typeof(WindowsService.Startup))] | |
| namespace WindowsService | |
| { | |
| public class Startup | |
| { | |
| public void Configuration(IAppBuilder app) | |
| { | |
| app.UseHangfireDashboard(); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment