Hi guys,
I have developed a web application with hangfire dashboard and deployed in but my hangfire dashboard doesn’t showing the part mentioned below which we can see in hangfire documentation please help me to find the reason for it.
my start up class has below code
public partial class Startup
{
public void Configuration(IAppBuilder app)
{
GlobalConfiguration.Configuration
.UseSqlServerStorage("Server");
//app.UseHangfireDashboard();
var storage1 = new SqlServerStorage("Server");
var storage2 = new SqlServerStorage("Client");
app.UseHangfireDashboard("/Server", new DashboardOptions(), storage1);
app.UseHangfireDashboard("/Client", new DashboardOptions(), storage2);
LogProvider.SetCurrentLogProvider(new ColouredConsoleLogProvider());
app.UseHangfireServer();
}
}