I just removed ASP.net Core 1.0 RC2 from my machine and installed the RTM as it came out yesterday. I've converted all the versions in project.json to say "1.0.0" instead of with the -rc2-* suffixes.
I think the current ASOS version 1.0.0-beta5-final is at ASP.net Core 1.0 RC2, and it is trying to reference something from RC2 that is no longer on my machine.
I'm getting this error: Could not load type 'Microsoft.Extensions.DependencyInjection.ServiceProviderExtensions' from assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'.
at Microsoft.AspNetCore.Builder.OpenIdConnectServerExtensions.UseOpenIdConnectServer(IApplicationBuilder app, Action configuration)
I think it's throwing this at my Startup.cs file when I callapp.UseOpenIdConnectServer(options => { ... });
I'm wondering if there is a temporary workaround for this until ASOS is released for Core RTM.