From 336e29075ffe8adb0f01cec1c64eaaf9b05ec746 Mon Sep 17 00:00:00 2001 From: Livar Cunha Date: Thu, 3 Nov 2016 17:05:20 -0700 Subject: [PATCH] Adding MSTest to the exclusion list of project.json because some test projects still depend on it and they are build with pj stage0. --- src/dotnet/project.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/dotnet/project.json b/src/dotnet/project.json index 114bbfd32..7e96851b5 100644 --- a/src/dotnet/project.json +++ b/src/dotnet/project.json @@ -12,7 +12,8 @@ "commands/dotnet-new/CSharp_Web.zip", "commands/dotnet-new/CSharp_nunittest.zip", "commands/dotnet-new/FSharp_Console.zip", - "commands/dotnet-new/FSharp_Lib.zip" + "commands/dotnet-new/FSharp_Lib.zip", + "commands/dotnet-new/CSharp_Mstest.zip" ] }, "compile": { @@ -24,7 +25,8 @@ "commands/dotnet-new/CSharp_MSBuild/**", "commands/dotnet-new/FSharp_Lib/**", "commands/dotnet-new/CSharp_xunittest/**", - "commands/dotnet-new/CSharp_nunittest/**" + "commands/dotnet-new/CSharp_nunittest/**", + "commands/dotnet-new/CSharp_Mstest/**", ] } },