Viewing .NET Build Log During Compile
-
Hi All, First Off, I've been reading the articles here for a while, but have never ventured as far as making a post. So I should say thanx to all for some exceedingly good articles, they have helped me a lot. Now the fawning is out of the way :).. My Question.... I'm building from the command line using .NET with a batch file.
"C:\Program Files\Microsoft Visual Studio .NET\Common7\IDE\devenv.exe" "d:\Dev\proj\proj.sln" /build "All Debug" /out "d:\Dev\proj\proj.txt" type "d:\Dev\proj\proj.txt"
Unfortunaly this does not allow me to see the log file being generated until the build is finished, even various tail utils fail to open the file (I'm assuming due to the file being held open by .NET). I'm sure VC6 outputted to stdout, but .NET does not, any ideas how I could get to see an output in progress? Thanx DAve