Samples.WebJobs.Core
Samples.WebJobs.Core copied to clipboard
Sample project to accompany https://matt-roberts.me/azure-webjobs-in-net-core-2-with-di-and-configuration/
Hi, Thanks, you sample was useful few months ago when I needed it :). With .NetCore 2.2, it seems that IJobActivator is deprecated, it recommended to use Host Builder. Microsoft...
Do you have an example using UserSecrets? I do: ` var environmentName = Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT"); if (string.Equals(environmentName, "development", StringComparison.OrdinalIgnoreCase)) { builder.AddUserSecrets(); }` And add in the user secret location to the...