Skip to content

Commit

Permalink
automatically close and open test solution
Browse files Browse the repository at this point in the history
the compile errors in temp files should be gone
  • Loading branch information
serra committed Feb 1, 2013
1 parent 6d4f4f5 commit e085fc7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Test/EndToEnd/test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
Expand Down

0 comments on commit e085fc7

Please sign in to comment.