From 1786e21426a38a4ed0d21ba92cca0ac33121a53c Mon Sep 17 00:00:00 2001 From: Pranav K Date: Mon, 21 Mar 2016 06:51:32 -0700 Subject: [PATCH] Reacting to CoreCLR package changes --- samples/IISSample/project.json | 4 +++- .../project.json | 6 +++++- .../project.json | 5 ++++- .../project.json | 5 ++++- test/TestSites/project.json | 7 +++++-- 5 files changed, 21 insertions(+), 6 deletions(-) diff --git a/samples/IISSample/project.json b/samples/IISSample/project.json index 1141de3a07..56c97356c7 100644 --- a/samples/IISSample/project.json +++ b/samples/IISSample/project.json @@ -14,7 +14,9 @@ }, "frameworks": { "net451": { }, - "netstandardapp1.5": { } + "netstandardapp1.5": { + "imports": "portable-net451+win8" + } }, "publishExclude": [ "node_modules", diff --git a/src/Microsoft.AspNetCore.Server.IISIntegration.Tools/project.json b/src/Microsoft.AspNetCore.Server.IISIntegration.Tools/project.json index 2e9667d2f5..318f0365f4 100644 --- a/src/Microsoft.AspNetCore.Server.IISIntegration.Tools/project.json +++ b/src/Microsoft.AspNetCore.Server.IISIntegration.Tools/project.json @@ -17,7 +17,11 @@ }, "frameworks": { - "dnxcore50": { + "netstandardapp1.5": { + "imports": [ + "portable-net451+win8", + "dnxcore50" + ] } } } diff --git a/test/Microsoft.AspNetCore.Server.IISIntegration.Tests/project.json b/test/Microsoft.AspNetCore.Server.IISIntegration.Tests/project.json index 6c69336f4a..6684014037 100644 --- a/test/Microsoft.AspNetCore.Server.IISIntegration.Tests/project.json +++ b/test/Microsoft.AspNetCore.Server.IISIntegration.Tests/project.json @@ -8,7 +8,10 @@ }, "frameworks": { "netstandardapp1.5": { - "imports": "portable-net451+win8", + "imports": [ + "portable-net451+win8", + "dnxcore50" + ], "dependencies": { "dotnet-test-xunit": "1.0.0-dev-*" } diff --git a/test/Microsoft.AspNetCore.Server.IISIntegration.Tools.Tests/project.json b/test/Microsoft.AspNetCore.Server.IISIntegration.Tools.Tests/project.json index 6fb6f6f983..dee9e49e2a 100644 --- a/test/Microsoft.AspNetCore.Server.IISIntegration.Tools.Tests/project.json +++ b/test/Microsoft.AspNetCore.Server.IISIntegration.Tools.Tests/project.json @@ -6,7 +6,10 @@ }, "frameworks": { "netstandardapp1.5": { - "imports": "portable-net451+win8", + "imports": [ + "portable-net451+win8", + "dnxcore50" + ], "dependencies": { "dotnet-test-xunit": "1.0.0-dev-*" } diff --git a/test/TestSites/project.json b/test/TestSites/project.json index 0439a35a03..12826ac40b 100644 --- a/test/TestSites/project.json +++ b/test/TestSites/project.json @@ -18,12 +18,15 @@ }, "frameworks": { "netstandardapp1.5": { - "imports": "portable-net451+win8", + "imports": [ + "portable-net451+win8", + "dnxcore50" + ], "dependencies": { "System.Net.Primitives": "4.0.11-*", "dotnet-test-xunit": "1.0.0-dev-*" } }, - "dnx451": {} + "net451": {} } }