0

I have an ASP.NET Core app and I'm currently using IConfiguration interface from Microsoft.Extensions.Configuration.

Looks like IConfiguration interface is also available through Microsoft.Framework.ConfigurationModel.

Which one am I supposed to use? My ASP.NET Core app is working fine but when I tried to share some class libraries with an Azure WebJobs app, I got stuck.

Sam
  • 19,814
  • 35
  • 141
  • 272

1 Answers1

1

Microsoft.Framework.ConfigurationModel was renamed to Microsoft.Framework.Configuration and then to Microsoft.Extensions.Configuration. You might have some out of date package references in your WebJob?

Sam
  • 4,634
  • 2
  • 33
  • 47