* update build files to use explicit library references to ensure proper 4.0 build on 4.5 enabled machines * remove Spring.Web.MVC projects from main solution file
21 lines
578 B
Batchfile
21 lines
578 B
Batchfile
@echo off
|
||
@echo .
|
||
@echo ..
|
||
@echo ...
|
||
@echo Running full Build Script, capturing output to buildlog.txt file...
|
||
@echo Start Time: %time%
|
||
build-support\tools\nant\bin\nant -D:test.withcoverage=false %1 %2 %3 %4 %5 %6 %7 %8 %9 > buildlog.txt
|
||
@echo .
|
||
@echo ..
|
||
@echo ...
|
||
@echo Launching text file viewer to display buildlog.txt contents...
|
||
start "ignored but required placeholder window title argument" buildlog.txt
|
||
@echo .
|
||
@echo ..
|
||
@echo ...
|
||
@echo ************************
|
||
@echo Build Complete!
|
||
@echo ************************
|
||
@echo End Time: %time%
|
||
@echo
|