I have a simple ASPNET core MVC out of the box template app. I installed the Hangfire nuget packages for the purpose hosting the UI. This app will not be a Hangfire client or server, just a single app for people to see the status of their jobs.
I want to set the default page to the Hangfire dashboard of the app. There will two screens - the login and the dashboard.
This answer provided guidance on how to do it with pages actually referenced in the app - but it does not work when I set it with "/hangfire". I end up getting an exception thrown because the "hangfire" page does not exist.
services.AddMvc()
.AddRazorPagesOptions(options =>
{
options.Conventions.AddPageRoute("hangfire", "/hangfire");
})
.SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
The exception makes sense - but I am not sure how to configure the default route as the hangfire dashboard.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…