Merge branch 'release' into dev
This commit is contained in:
commit
5ca5d07404
|
|
@ -10,7 +10,9 @@ namespace ServerComparison.TestSites
|
||||||
public static void Main(string[] args)
|
public static void Main(string[] args)
|
||||||
{
|
{
|
||||||
var host = new WebHostBuilder()
|
var host = new WebHostBuilder()
|
||||||
.UseKestrel()
|
// We set the server by name before default args so that command line arguments can override it.
|
||||||
|
// This is used to allow deployers to choose the server for testing.
|
||||||
|
.UseServer("Microsoft.AspNetCore.Server.Kestrel")
|
||||||
.UseDefaultHostingConfiguration(args)
|
.UseDefaultHostingConfiguration(args)
|
||||||
.UseIISIntegration()
|
.UseIISIntegration()
|
||||||
.UseStartup("ServerComparison.TestSites")
|
.UseStartup("ServerComparison.TestSites")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue