Fixing failing tests
This commit is contained in:
parent
ce425305bb
commit
90087b0c39
|
|
@ -9,6 +9,12 @@
|
||||||
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
|
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
|
||||||
"Microsoft.Net.Http.Headers": "1.0.0-*"
|
"Microsoft.Net.Http.Headers": "1.0.0-*"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"content": [
|
||||||
|
"Http.config",
|
||||||
|
"NtlmAuthentation.config"
|
||||||
|
],
|
||||||
|
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net451": {
|
"net451": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
||||||
|
|
@ -10,10 +10,10 @@ namespace ServerComparison.TestSites
|
||||||
public static void Main(string[] args)
|
public static void Main(string[] args)
|
||||||
{
|
{
|
||||||
var host = new WebHostBuilder()
|
var host = new WebHostBuilder()
|
||||||
|
.UseServer ("Microsoft.AspNetCore.Server.Kestrel")
|
||||||
.UseDefaultConfiguration(args)
|
.UseDefaultConfiguration(args)
|
||||||
.UseIISPlatformHandlerUrl()
|
.UseIISPlatformHandlerUrl()
|
||||||
.UseStartup("ServerComparison.TestSites")
|
.UseStartup("ServerComparison.TestSites")
|
||||||
.UseServer("Microsoft.AspNetCore.Server.Kestrel")
|
|
||||||
.Build();
|
.Build();
|
||||||
|
|
||||||
host.Run();
|
host.Run();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue