#1
|
|||
|
|||
Warnings and Errors
I would like to be able to extract all the warnings and any errors that are thrown from the .net IDE into a separate log file. That was we can quickly see all issues and get them resolved. We have over 103 dif projects that get built. (DON’T ask )
Any Ideas on how we could do this. |
#2
|
|||
|
|||
Add this code to the Make VS.NET step's vbld_StepDone script event (Step -> Properties -> Script Editor -> Edit -> Insert Event -> vbld_StepDone [http://www.visualbuild.com/Manual/scriptevents.htm]):
vbld_FSO().CreateTextFile(Application.ExpandMacros ("%TEMP%\vs.txt"), True).Write( _ Application.Macros(vbldMacroSystem)("LASTSTEP_OUTP UT")) |
|
|