Changed DNX451 references to NET451

This commit is contained in:
Kiran Challa 2016-04-08 15:15:29 -07:00
parent f31e9969c7
commit 4423e4af38
3 changed files with 3 additions and 3 deletions

View File

@ -72,7 +72,7 @@ namespace ServerComparison.FunctionalTests
EnvironmentName = "HelloWorld", // Will pick the Start class named 'StartupHelloWorld',
ServerConfigTemplateContent = Helpers.GetConfigContent(serverType, "Http.config", "nginx.conf"),
SiteName = "HttpTestSite", // This is configured in the Http.config
PublishTargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "NET451" : "netstandardapp1.5"
PublishTargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netstandardapp1.5"
};
using (var deployer = ApplicationDeployerFactory.Create(deploymentParameters, logger))

View File

@ -142,7 +142,7 @@ namespace ServerComparison.FunctionalTests
EnvironmentName = "Responses",
ServerConfigTemplateContent = Helpers.GetConfigContent(serverType, "Http.config", "nginx.conf"),
SiteName = "HttpTestSite", // This is configured in the Http.config
PublishTargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "NET451" : "netstandardapp1.5"
PublishTargetFramework = runtimeFlavor == RuntimeFlavor.Clr ? "net451" : "netstandardapp1.5"
};
using (var deployer = ApplicationDeployerFactory.Create(deploymentParameters, logger))

View File

@ -16,7 +16,7 @@
"wwwroot/**/*"
],
"frameworks": {
"dnx451": {},
"net451": {},
"netstandardapp1.5": {
"imports": [
"dnxcore50",