Reacting to Hosting deployer change
This commit is contained in:
parent
65f24a3fc7
commit
ec9d212dc3
|
|
@ -31,6 +31,7 @@ namespace E2ETests
|
|||
var deploymentParameters = new DeploymentParameters(Helpers.GetApplicationPath(), serverType, runtimeFlavor, architecture)
|
||||
{
|
||||
PublishApplicationBeforeDeployment = true,
|
||||
PublishTargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "dnx451" : "netstandardapp1.5",
|
||||
ApplicationBaseUriHint = applicationBaseUrl,
|
||||
EnvironmentName = "NtlmAuthentication", //Will pick the Start class named 'StartupNtlmAuthentication'
|
||||
ApplicationHostConfigTemplateContent = (serverType == ServerType.IISExpress) ? File.ReadAllText("NtlmAuthentation.config") : null,
|
||||
|
|
|
|||
|
|
@ -59,6 +59,7 @@ namespace E2ETests
|
|||
var deploymentParameters = new DeploymentParameters(Helpers.GetApplicationPath(), serverType, runtimeFlavor, architecture)
|
||||
{
|
||||
PublishApplicationBeforeDeployment = true,
|
||||
PublishTargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "dnx451" : "netstandardapp1.5",
|
||||
ApplicationBaseUriHint = applicationBaseUrl,
|
||||
EnvironmentName = "OpenIdConnectTesting",
|
||||
UserAdditionalCleanup = parameters =>
|
||||
|
|
|
|||
|
|
@ -111,6 +111,7 @@ namespace E2ETests
|
|||
{
|
||||
ApplicationBaseUriHint = applicationBaseUrl,
|
||||
PublishApplicationBeforeDeployment = true,
|
||||
PublishTargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "dnx451" : "netstandardapp1.5",
|
||||
UserAdditionalCleanup = parameters =>
|
||||
{
|
||||
if (!Helpers.RunningOnMono
|
||||
|
|
|
|||
|
|
@ -123,6 +123,7 @@ namespace E2ETests
|
|||
ApplicationBaseUriHint = applicationBaseUrl,
|
||||
EnvironmentName = "SocialTesting",
|
||||
PublishApplicationBeforeDeployment = true,
|
||||
PublishTargetFramework = donetFlavor == RuntimeFlavor.Clr ? "dnx451" : "netstandardapp1.5",
|
||||
UserAdditionalCleanup = parameters =>
|
||||
{
|
||||
if (!Helpers.RunningOnMono
|
||||
|
|
|
|||
Loading…
Reference in New Issue