我今天一直在试验 Hangfire。它看起来像一个很酷的产品。不幸的是,我的环境不是最新的。我有 VS 2010、.Net 4.0 和 SQLServer 2005。我创建了一个新项目并安装了 Hangfire、Hangfire.Core、Hangfire.NET40.SQLServer、OWIN,谁知道还有什么。该项目现在没有错误。所有引用均已解决。
我从StackOverflow获得了很多见解,并尝试按照说明配置 Startup 类。
Public Sub Configuration(app As IAppBuilder)
app.UseHangfire(
Sub(config)
' Basic setup required to process background jobs.
config.UseSqlServerStorage("SQLServer")
config.UseServer()
End Sub)
End Sub
我还创建了一个新的 SQL 用户和空数据库供 Hangfire 使用。在 Web.Config 文件中,我添加了这个连接字符串:
<add name="SQLServer"
connectionString="Server=SQLServer;Database=Hangfire;User Id=HangfireAPI;Password=********;" />
我想我已经涵盖了所有基础,但是在运行时调用 UseSqlServerStorage 返回一个错误:
Locating source for 'c:\_oss\common-logging\src\Common.Logging.Core\Logging\Simple\NoOpLogger.cs'. Checksum: MD5 {7d f3 26 f7 66 5a 52 54 72 fe 23 b9 2 c1 cd 50}
The file 'c:\_oss\common-logging\src\Common.Logging.Core\Logging\Simple\NoOpLogger.cs' does not exist.
Looking in script documents for 'c:\_oss\common-logging\src\Common.Logging.Core\Logging\Simple\NoOpLogger.cs'...
Looking in the projects for 'c:\_oss\common-logging\src\Common.Logging.Core\Logging\Simple\NoOpLogger.cs'.
The file was not found in a project.
我没有成功搜索文件“NoOpLogger.cs”。由于我的项目是 VB,我不确定为什么或如何出现这种情况。
我很感激这方面的帮助。