Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...