Owin 不包含 "UseHangfire" 的定义,也没有扩展方法 "UseHangfire"

Owin does not contain a definition for "UseHangfire" and no extension method "UseHangfire"

我正在尝试在 VS 2013 中设置 Hangfire,我已经通过包管理器安装了它。但是,当我添加 app.UseHangfire (...) 代码时,如 http://docs.hangfire.io/en/latest/quick-start.html 中所述。我收到以下错误:

'Owin.IAppBuilder' does not contain a definition for 'UseHangfire' and no extension method 'UseHangfire' accepting a first argument of type 'Owin.IAppBuilder' could be found (are you missing a using directive or an assembly reference?)

你添加命名空间了吗?

using Hangfire;

您的 Startup 应如下所示:

using Hangfire;
using Hangfire.SqlServer;
using Hangfire.Dashboard;

public class Startup
{
    public void Configuration(IAppBuilder app)
        {
            app.UseHangfire(config =>
            {
                config.UseSqlServerStorage("Data Source=<connectionstring>; Initial Catalog=HangFire; Trusted_Connection=true;");
                config.UseServer();

                //config.UseAuthorizationFilters(new AuthorizationFilter
                //{
                //    // Users = "admin, superuser", // allow only specified users
                //    Roles = "admins" // allow only specified roles
                //});
            });
    }
}

将 HangFire.Core 包更新到最新版本为我解决了这个问题。似乎 OWIN 正在安装一个旧包作为依赖项