Skip to content
This repository was archived by the owner on Nov 1, 2018. It is now read-only.

Commit cad873d

Browse files
committed
React to Deployer changes
1 parent cf9509b commit cad873d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

test/Microsoft.AspNetCore.Server.IISIntegration.FunctionalTests/HelloWorldTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public async Task HelloWorld(ServerType serverType, RuntimeFlavor runtimeFlavor,
5252
{
5353
ApplicationBaseUriHint = applicationBaseUrl,
5454
EnvironmentName = "HelloWorld", // Will pick the Start class named 'StartupHelloWorld',
55-
ApplicationHostConfigTemplateContent = (serverType == ServerType.IISExpress) ? File.ReadAllText("Http.config") : null,
55+
ServerConfigTemplateContent = (serverType == ServerType.IISExpress) ? File.ReadAllText("Http.config") : null,
5656
SiteName = "HttpTestSite", // This is configured in the Http.config
5757
PublishTargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netstandardapp1.5"
5858
};

test/Microsoft.AspNetCore.Server.IISIntegration.FunctionalTests/HttpsTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public async Task HttpsHelloWorld(ServerType serverType, RuntimeFlavor runtimeFl
3939
{
4040
ApplicationBaseUriHint = applicationBaseUrl,
4141
EnvironmentName = "HttpsHelloWorld", // Will pick the Start class named 'StartupHttpsHelloWorld',
42-
ApplicationHostConfigTemplateContent = (serverType == ServerType.IISExpress) ? File.ReadAllText("Https.config") : null,
42+
ServerConfigTemplateContent = (serverType == ServerType.IISExpress) ? File.ReadAllText("Https.config") : null,
4343
SiteName = "HttpsTestSite", // This is configured in the Https.config
4444
PublishTargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netstandardapp1.5"
4545
};
@@ -108,7 +108,7 @@ public async Task HttpsHelloWorldCerts(ServerType serverType, RuntimeFlavor runt
108108
{
109109
ApplicationBaseUriHint = applicationBaseUrl,
110110
EnvironmentName = "HttpsHelloWorld", // Will pick the Start class named 'StartupHttpsHelloWorld',
111-
ApplicationHostConfigTemplateContent = (serverType == ServerType.IISExpress) ? File.ReadAllText("Https.config") : null,
111+
ServerConfigTemplateContent = (serverType == ServerType.IISExpress) ? File.ReadAllText("Https.config") : null,
112112
SiteName = "HttpsTestSite", // This is configured in the Https.config
113113
PublishTargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netstandardapp1.5"
114114
};

test/Microsoft.AspNetCore.Server.IISIntegration.FunctionalTests/NtlmAuthentationTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public async Task NtlmAuthentication(ServerType serverType, RuntimeFlavor runtim
3434
{
3535
ApplicationBaseUriHint = applicationBaseUrl,
3636
EnvironmentName = "NtlmAuthentication", // Will pick the Start class named 'StartupNtlmAuthentication'
37-
ApplicationHostConfigTemplateContent = (serverType == ServerType.IISExpress) ? File.ReadAllText("NtlmAuthentation.config") : null,
37+
ServerConfigTemplateContent = (serverType == ServerType.IISExpress) ? File.ReadAllText("NtlmAuthentation.config") : null,
3838
SiteName = "NtlmAuthenticationTestSite", // This is configured in the NtlmAuthentication.config
3939
PublishTargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netstandardapp1.5"
4040
};

0 commit comments

Comments
 (0)