
 Rank: Guest Groups: Guest
Joined: 9/17/2007 Posts: 11,670 Points: -1,200
|
Date parsed: 22/04/2008 13:37:12 Date: Tue, 22 Apr 2008 11:37:12 +0200
Hi,
I am using devenv.exe to build and deploy automatically a Visual Studio project (in C#). I use this command line: C:\Program Files\Microsoft Visual Studio 8\Common7\IDE>devenv /deploy rel ease "C:\testapp\myapp\myapp.sln" /log file.txt /out file_2.txt
Whith that command I only get in file_2.txt the build output, until this point:
------ Deploy started: Project: myapp, Configuration: Release Any CPU ------ ========== Build: 1 succeeded or up-to-date, 0 failed, 0 skipped ========== ========== Deploy: 1 succeeded, 0 failed, 0 skipped ==========
My app use command "debug.print()" and write some messages in console window in VS IDE, I would like to save this output window messages to a file using a command line, ie, I would like to save the messages after Deployment.
Is there any way to do this? Thanks for your help, Bye,
|