-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.0.5 nuget version bug #99
Comments
+1 |
1 similar comment
+1 |
I see the author is not going to create a new tag with this tag? |
I use this dirty hack for my OWIN setup: app.Use(async (ctx, next) =>
{
if (ctx.Request.Path.Value == "/hangfire/JobConfiguration/css/jobExtension")
{
var t = typeof(WebStartup);
using (var stream = t.Assembly.GetManifestResourceStream($"{t.Namespace}.cssfix.css"))
using (var reader = new StreamReader(stream))
{
var content = reader.ReadToEnd();
await ctx.Response.WriteAsync(content);
}
}
else
{
await next();
}
}); there |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi we use Hangfire.RecurringJobAdmin 1.0.5 nuget version for .net core 6.0.
we have error JobExtension.css
Please Can you send new nuget version and fix this issue ?
nuget package code
#app {
position: relative !important;
left: -229px !important;
}
github code
#app {
position: relative !important;
left: 0px !important;
}
The text was updated successfully, but these errors were encountered: