views:

153

answers:

1

Visual Studio will show errors in an AS?X or HTML file in the Error List window when you have that file open. However once you close the file the error(s) are removed from the Error List.

Is it possible to validate all AS?X and HTML files in one action (ideally as part of building) and show all errors at once?

+5  A: 

If you're using a web application project you can add a build task that uses the aspnet_compiler to compile the application.

dfowler
That sounds ideal - can you provide any more information?
Richard Ev
http://msdn.microsoft.com/en-us/library/ms229863(VS.80).aspx
dfowler