From e085fc768a64a09f796cf001d4b4aa5fb9afe75d Mon Sep 17 00:00:00 2001 From: Marijn van der Zee Date: Fri, 1 Feb 2013 15:35:22 +0100 Subject: [PATCH] automatically close and open test solution the compile errors in temp files should be gone --- Test/EndToEnd/test.ps1 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Test/EndToEnd/test.ps1 b/Test/EndToEnd/test.ps1 index c1f918d..d684c5f 100644 --- a/Test/EndToEnd/test.ps1 +++ b/Test/EndToEnd/test.ps1 @@ -10,7 +10,11 @@ $p = new-mvcapplication foobar install-package Newtonsoft.Json install-package twitter.bootstrap.mvc4.sample -source $source - build-project $p + build-project $p + #close and open solution to remove annoying build errors in temp files + $slnFile = $dte.Solution.FullName + close-solution + open-solution $slnFile pop-location $dte.ExecuteCommand("debug.start") }