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

Commit cf9509b

Browse files
committed
Fixed the build
1 parent 92cb512 commit cf9509b

File tree

7 files changed

+18
-11
lines changed

7 files changed

+18
-11
lines changed

src/Microsoft.AspNetCore.Server.IISIntegration.Tools/project.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
"Microsoft.Extensions.CommandLineUtils": "1.0.0-*",
1414
"Microsoft.Extensions.Configuration.Json": "1.0.0-*",
1515
"Microsoft.DotNet.ProjectModel": "1.0.0-*",
16-
"Microsoft.DotNet.Cli.Utils": "1.0.0-*"
16+
"Microsoft.DotNet.Cli.Utils": "1.0.0-*",
17+
"NETStandard.Library": "1.5.0-*",
18+
"System.Diagnostics.Process": "4.1.0-*"
1719
},
1820

1921
"frameworks": {

src/dotnet-publish-iis/project.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
"Microsoft.Extensions.CommandLineUtils": "1.0.0-*",
1414
"Microsoft.Extensions.Configuration.Json": "1.0.0-*",
1515
"Microsoft.DotNet.ProjectModel": "1.0.0-*",
16-
"Microsoft.DotNet.Cli.Utils": "1.0.0-*"
16+
"Microsoft.DotNet.Cli.Utils": "1.0.0-*",
17+
"NETStandard.Library": "1.5.0-*",
18+
"System.Diagnostics.Process": "4.1.0-*"
1719
},
1820

1921
"frameworks": {

test/Microsoft.AspNetCore.Server.IISIntegration.FunctionalTests/project.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"Microsoft.AspNetCore.Server.Testing": "1.0.0-*",
1212
"Microsoft.Extensions.Logging": "1.0.0-*",
1313
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
14-
"Microsoft.NETCore.Platforms": "1.0.1-*",
1514
"xunit": "2.1.0"
1615
},
1716
"frameworks": {

test/Microsoft.AspNetCore.Server.IISIntegration.Tests/project.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"dependencies": {
44
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
55
"Microsoft.AspNetCore.TestHost": "1.0.0-*",
6-
"Microsoft.NETCore.Platforms": "1.0.1-*",
76
"xunit": "2.1.0"
87
},
98
"frameworks": {
@@ -13,7 +12,9 @@
1312
"dnxcore50"
1413
],
1514
"dependencies": {
16-
"dotnet-test-xunit": "1.0.0-dev-*"
15+
"dotnet-test-xunit": "1.0.0-dev-*",
16+
"NETStandard.Library": "1.5.0-*",
17+
"System.Diagnostics.Process": "4.1.0-*"
1718
}
1819
},
1920
"net451": {

test/Microsoft.AspNetCore.Server.IISIntegration.Tools.Tests/project.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"dependencies": {
33
"xunit": "2.1.0",
4-
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*",
5-
"Microsoft.NETCore.Platforms": "1.0.1-*"
4+
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-*"
65
},
76
"frameworks": {
87
"netstandardapp1.5": {
@@ -11,7 +10,9 @@
1110
"dnxcore50"
1211
],
1312
"dependencies": {
14-
"dotnet-test-xunit": "1.0.0-dev-*"
13+
"dotnet-test-xunit": "1.0.0-dev-*",
14+
"NETStandard.Library": "1.5.0-*",
15+
"System.Diagnostics.Process": "4.1.0-*"
1516
}
1617
}
1718
},

test/TestSites/project.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-*",
1414
"Microsoft.Extensions.Configuration.Json": "1.0.0-*",
1515
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
16-
"Microsoft.NETCore.Platforms": "1.0.1-*",
1716
"xunit": "2.1.0"
1817
},
1918
"frameworks": {
@@ -24,7 +23,9 @@
2423
],
2524
"dependencies": {
2625
"System.Net.Primitives": "4.0.11-*",
27-
"dotnet-test-xunit": "1.0.0-dev-*"
26+
"dotnet-test-xunit": "1.0.0-dev-*",
27+
"NETStandard.Library": "1.5.0-*",
28+
"System.Diagnostics.Process": "4.1.0-*"
2829
}
2930
},
3031
"net451": {}

test/dotnet-publish-iis.Tests/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"dependencies": {
33
"xunit": "2.1.0",
44
"dotnet-publish-iis": "1.0.0-*",
5-
"Microsoft.NETCore.Platforms": "1.0.1-*"
5+
"NETStandard.Library": "1.5.0-*",
6+
"System.Diagnostics.Process": "4.1.0-*"
67
},
78
"frameworks": {
89
"netstandardapp1.5": {

0 commit comments

Comments
 (0)