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?
Ctrl
+.
on the line with the error to get an auto suggestion. In ASP.NET Core it will do a search on packagesearch.azurewebsites.net and suggest to add missing package declarations – Balcony