Reacting to Hosting deployers change

This commit is contained in:
John Luo 2016-03-04 10:51:22 -08:00
parent 4a76b0dd0f
commit aa28b85d6a
2 changed files with 2 additions and 0 deletions

View File

@ -65,6 +65,7 @@ namespace ServerComparison.FunctionalTests
EnvironmentName = "HelloWorld", // Will pick the Start class named 'StartupHelloWorld',
ApplicationHostConfigTemplateContent = (serverType == ServerType.IISExpress) ? File.ReadAllText("Http.config") : null,
SiteName = "HttpTestSite", // This is configured in the Http.config
PublishTargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "dnx451" : "netstandardapp1.5"
};
using (var deployer = ApplicationDeployerFactory.Create(deploymentParameters, logger))

View File

@ -118,6 +118,7 @@ namespace ServerComparison.FunctionalTests
EnvironmentName = "Responses",
ApplicationHostConfigTemplateContent = (serverType == ServerType.IISExpress) ? File.ReadAllText("Http.config") : null,
SiteName = "HttpTestSite", // This is configured in the Http.config
PublishTargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "dnx451" : "netstandardapp1.5"
};
using (var deployer = ApplicationDeployerFactory.Create(deploymentParameters, logger))