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

Commit 30407c2

Browse files
committed
React to deployer update
1 parent 4ac0811 commit 30407c2

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
@@ -55,7 +55,7 @@ public async Task HelloWorld(ServerType serverType, RuntimeFlavor runtimeFlavor,
5555
EnvironmentName = "HelloWorld", // Will pick the Start class named 'StartupHelloWorld',
5656
ServerConfigTemplateContent = (serverType == ServerType.IISExpress) ? File.ReadAllText("Http.config") : null,
5757
SiteName = "HttpTestSite", // This is configured in the Http.config
58-
PublishTargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netcoreapp1.0",
58+
TargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netcoreapp1.0",
5959
ApplicationType = applicationType
6060
};
6161

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public async Task HttpsHelloWorld(ServerType serverType, RuntimeFlavor runtimeFl
4141
EnvironmentName = "HttpsHelloWorld", // Will pick the Start class named 'StartupHttpsHelloWorld',
4242
ServerConfigTemplateContent = (serverType == ServerType.IISExpress) ? File.ReadAllText("Https.config") : null,
4343
SiteName = "HttpsTestSite", // This is configured in the Https.config
44-
PublishTargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netcoreapp1.0",
44+
TargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netcoreapp1.0",
4545
ApplicationType = applicationType
4646
};
4747

@@ -112,7 +112,7 @@ public async Task HttpsHelloWorldCerts(ServerType serverType, RuntimeFlavor runt
112112
EnvironmentName = "HttpsHelloWorld", // Will pick the Start class named 'StartupHttpsHelloWorld',
113113
ServerConfigTemplateContent = (serverType == ServerType.IISExpress) ? File.ReadAllText("Https.config") : null,
114114
SiteName = "HttpsTestSite", // This is configured in the Https.config
115-
PublishTargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netcoreapp1.0",
115+
TargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netcoreapp1.0",
116116
ApplicationType = applicationType
117117
};
118118

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public async Task NtlmAuthentication(ServerType serverType, RuntimeFlavor runtim
3636
EnvironmentName = "NtlmAuthentication", // Will pick the Start class named 'StartupNtlmAuthentication'
3737
ServerConfigTemplateContent = (serverType == ServerType.IISExpress) ? File.ReadAllText("NtlmAuthentation.config") : null,
3838
SiteName = "NtlmAuthenticationTestSite", // This is configured in the NtlmAuthentication.config
39-
PublishTargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netcoreapp1.0",
39+
TargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netcoreapp1.0",
4040
ApplicationType = applicationType
4141
};
4242

0 commit comments

Comments
 (0)