|
Thanks for your quick response. Because it was not totally clear how I can set the target to precompiled (like you said "build precompiled") I did the following and it worked! Edited the ClickToBuild.cmd lines:
:build
call build
pause
goto end
changed to:
:build
call build precompiled
pause
goto end
I suspect there's a better way to do this, isn't it?
|