Viewing .NET Build Log During Compile
Visual Studio
1
Posts
1
Posters
2
Views
1
Watching
-
Hi, 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 P.S. I posted this question to the C++ board, before I noticed there was a VS.NET IDE board, sorry for the repitition.