From 37dde59569ad397278d6f2f2e4be70088d1950c1 Mon Sep 17 00:00:00 2001 From: Victor Hurdugaci Date: Thu, 17 Mar 2016 09:15:15 -0700 Subject: [PATCH] Fix the test projects that can't build without src because the framework assemblies are not transitively referenced when referencing packages --- test/Microsoft.AspNetCore.Razor.Runtime.Test/project.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/test/Microsoft.AspNetCore.Razor.Runtime.Test/project.json b/test/Microsoft.AspNetCore.Razor.Runtime.Test/project.json index f553af82af..79bceab2a0 100644 --- a/test/Microsoft.AspNetCore.Razor.Runtime.Test/project.json +++ b/test/Microsoft.AspNetCore.Razor.Runtime.Test/project.json @@ -28,8 +28,11 @@ }, "net451": { "frameworkAssemblies": { - "System.Runtime": "", - "System.Threading.Tasks": "" + "System.Runtime": { "type": "build" }, + "System.IO": { "type": "build" }, + "System.Threading.Tasks": "", + "System.Xml": "4.0.0.0", + "System.Xml.Linq": "4.0.0.0" }, "dependencies": { "Moq": "4.2.1312.1622",