PDA

View Full Version : Warnings and Errors


Joshua_Schipper
04-11-2006, 05:26 PM
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.

kinook
04-12-2006, 09:09 AM
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_OUTPUT"))