upgraded to vs2017

This commit is contained in:
TomPallister
2017-03-09 17:00:15 +00:00
parent ffd4e364f6
commit 6f65d9bab0
23 changed files with 274 additions and 431 deletions

View File

@ -41,11 +41,11 @@ namespace Ocelot.ManualTest
services.AddOcelot(Configuration);
}
public async void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
loggerFactory.AddConsole(Configuration.GetSection("Logging"));
await app.UseOcelot();
app.UseOcelot().Wait();
}
}
}