diff --git a/src/MusicStore/project.json b/src/MusicStore/project.json index 3f1b92f9be..d4cfc67240 100644 --- a/src/MusicStore/project.json +++ b/src/MusicStore/project.json @@ -56,15 +56,20 @@ "web": "MusicStore" }, "frameworks": { - "dnx451": { }, - "dnxcore50": { + "dnx451": {}, + "netstandardapp1.5": { "dependencies": { "NETStandard.Library": "1.0.0-*" }, - "imports": "portable-net451+win8" + "imports": [ + "dnxcore50", + "portable-net451+win8" + ] } }, "scripts": { - "postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath%" ] + "postpublish": [ + "dotnet publish-iis --publish-folder %publish:OutputPath%" + ] } } \ No newline at end of file diff --git a/test/E2ETests/project.json b/test/E2ETests/project.json index 3bf4368430..efdf389bc5 100644 --- a/test/E2ETests/project.json +++ b/test/E2ETests/project.json @@ -15,14 +15,17 @@ "xunit": "2.1.0" }, "frameworks": { - "dnxcore50": { + "netstandardapp1.5": { "dependencies": { "System.Data.SqlClient": "4.0.0-*", "System.Net.Http": "4.0.1-*", "System.Xml.XmlDocument": "4.0.0-*", "dotnet-test-xunit": "1.0.0-dev-*" }, - "imports": "portable-net451+win8" + "imports": [ + "dnxcore50", + "portable-net451+win8" + ] } }, "testRunner": "xunit" diff --git a/test/MusicStore.Test/project.json b/test/MusicStore.Test/project.json index ff36efcbaa..92a1389c4c 100644 --- a/test/MusicStore.Test/project.json +++ b/test/MusicStore.Test/project.json @@ -9,13 +9,16 @@ "XUnit": "2.1.0" }, "frameworks": { - "dnxcore50": { - "imports": "portable-net451+win8", + "netstandardapp1.5": { + "imports": [ + "dnxcore50", + "portable-net451+win8" + ], "dependencies": { "dotnet-test-xunit": "1.0.0-dev-*" } }, - "dnx451": { } + "dnx451": {} }, "testRunner": "xunit" -} +} \ No newline at end of file