I'm trying to setup dependency injection with Azure functions but for whatever reason I can't get the web jobs start up method to fire.
[assembly: WebJobsStartup(typeof(PersonalBlog.Functions.Content.RefreshContentStartup))]
namespace PersonalBlog.Functions.Content {
public class RefreshContentStartup : IWebJobsStartup {
public void Configure(IWebJobsBuilder builder) { }
}
}
The project is .net Framework 4.7.1 due to the fact that it has a dependency on a few libraries that haven't been converted to dot net core yet...
Is there something I'm missing here? Do I have to add a setting for it to pick up on my startup file?