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

Commit 3af7a96

Browse files
committed
Reacting to CoreCLR package changes
1 parent 0852883 commit 3af7a96

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

src/Microsoft.AspNetCore.Server.Testing/Deployers/ApplicationDeployer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ protected void AddEnvironmentVariablesToProcess(ProcessStartInfo startInfo)
124124
var environment =
125125
#if NET451
126126
startInfo.EnvironmentVariables;
127-
#elif NETSTANDARDAPP1_5
127+
#else
128128
startInfo.Environment;
129129
#endif
130130

@@ -139,7 +139,7 @@ protected void AddEnvironmentVariablesToProcess(ProcessStartInfo startInfo)
139139
#if NET451
140140
protected void SetEnvironmentVariable(System.Collections.Specialized.StringDictionary environment, string name, string value)
141141
{
142-
#elif NETSTANDARDAPP1_5
142+
#else
143143
protected void SetEnvironmentVariable(System.Collections.Generic.IDictionary<string, string> environment, string name, string value)
144144
{
145145
#endif

src/Microsoft.AspNetCore.Server.Testing/project.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@
2020
"Microsoft.Extensions.Process.Sources": {
2121
"type": "build",
2222
"version": "1.0.0-*"
23-
},
24-
"Microsoft.NETCore.Platforms": "1.0.1-*"
23+
}
2524
},
2625
"frameworks": {
2726
"net451": {
@@ -33,7 +32,7 @@
3332
"System.Runtime": { "type": "build" }
3433
}
3534
},
36-
"netstandardapp1.5": {
35+
"netstandard1.3": {
3736
"dependencies": {
3837
"System.Diagnostics.Process": "4.1.0-*",
3938
"System.IO.FileSystem": "4.0.1-*",

0 commit comments

Comments
 (0)