diff --git a/src/Microsoft.AspNetCore.Server.Testing/Deployers/ApplicationDeployer.cs b/src/Microsoft.AspNetCore.Server.Testing/Deployers/ApplicationDeployer.cs index 0734b6addf..315fe078c7 100644 --- a/src/Microsoft.AspNetCore.Server.Testing/Deployers/ApplicationDeployer.cs +++ b/src/Microsoft.AspNetCore.Server.Testing/Deployers/ApplicationDeployer.cs @@ -124,7 +124,7 @@ namespace Microsoft.AspNetCore.Server.Testing var environment = #if NET451 startInfo.EnvironmentVariables; -#elif NETSTANDARDAPP1_5 +#else startInfo.Environment; #endif @@ -139,7 +139,7 @@ namespace Microsoft.AspNetCore.Server.Testing #if NET451 protected void SetEnvironmentVariable(System.Collections.Specialized.StringDictionary environment, string name, string value) { -#elif NETSTANDARDAPP1_5 +#else protected void SetEnvironmentVariable(System.Collections.Generic.IDictionary environment, string name, string value) { #endif diff --git a/src/Microsoft.AspNetCore.Server.Testing/project.json b/src/Microsoft.AspNetCore.Server.Testing/project.json index 5220a79dc5..b1bedccada 100644 --- a/src/Microsoft.AspNetCore.Server.Testing/project.json +++ b/src/Microsoft.AspNetCore.Server.Testing/project.json @@ -20,8 +20,7 @@ "Microsoft.Extensions.Process.Sources": { "type": "build", "version": "1.0.0-*" - }, - "Microsoft.NETCore.Platforms": "1.0.1-*" + } }, "frameworks": { "net451": { @@ -33,7 +32,7 @@ "System.Runtime": { "type": "build" } } }, - "netstandardapp1.5": { + "netstandard1.3": { "dependencies": { "System.Diagnostics.Process": "4.1.0-*", "System.IO.FileSystem": "4.0.1-*",