Hello,
I’ve just started to integrate Hangfire into an existing ASP.Net VB project. I’ve got most of the code converted from c# and usable, but I’m not sure where to put the code that would normally go into startup.cs.
Also, my project uses ASP forms authentication, so I’m not sure how to configure the OWIN portions of the dashboard.
Currently, my project is showing this error:
The following errors occurred while attempting to load the app.
- No assembly found containing an OwinStartupAttribute.
- No assembly found containing a Startup or [AssemblyName].Startup class.
To disable OWIN startup discovery, add the appSetting owin:AutomaticAppStartup with a value of “false” in your web.config.
To specify the OWIN startup Assembly, Class, or Method, add the appSetting owin:AppStartup with the fully qualified startup class or configuration method name in your web.config.
Thanks in advance for your help!
–Jon