This article demonstrates how the Hangfire dashboard can be set up in an ASP .NET 5 application including authentication via ASP .NET Identity. Adding Hangfire Packages project.json:
1 2 3 4 5 6 |
"dependencies": { ... "Hangfire.SqlServer": "1.5.3", "Hangfire": "1.5.3", ... }, |
Since I am using Hangfire with SQL, I have to add Hangfire itself and Hangfire.SqlServer… mehr