+semver: major merged netstandard2.0 upgrade and updated all packages. Also had to change identity server test due to scope deduping and put a few awaits in.

This commit is contained in:
Tom Pallister
2018-05-11 07:59:03 +01:00
parent 7345bdccda
commit 1823c832a6
13 changed files with 84 additions and 90 deletions

View File

@ -664,7 +664,8 @@ namespace Ocelot.AcceptanceTests
{
using (var httpClient = new HttpClient())
{
var response = httpClient.GetAsync($"{url}/.well-known/openid-configuration").Result;
var response = httpClient.GetAsync($"{url}/.well-known/openid-configuration").GetAwaiter().GetResult();
var content = response.Content.ReadAsStringAsync().GetAwaiter();
response.EnsureSuccessStatusCode();
}
}