I have just upgraded my sample app from RC1 to RC2 and I can't find how to bind a specific section of my appSettings.json file to my own POCO anymore.
The sample at https://github.com/aspnet/live.asp.net/blob/rc2/src/live.asp.net/Startup.cs#L47 show that something like this should work:
services.Configure<AppSettings>(options => Configuration.GetSection("AppSettings").Bind(options));
But with the final RC2 bits the "Bind" method or extension method can't be found
Any idea where it lives now or if there is a new approach for this?
Ok, found it. It turns out the binder has moved to another package: Microsoft.Extensions.Configuration.Binder
Once I added this package the code in the original question works unchanged
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With