|
#1
|
|||
|
|||
How do I redirect MSBuild's output to file?
I need to log the output of MSBuild action to a plain text file. If a compilation fail, I will send the file by email.
If I did it in command line, I would write something like: MSBuild project.sln >> my.log But how do I do it using MSBuild action? Thank you in advance! P.S. I use 7.7 version Last edited by tikskit; 02-24-2012 at 01:41 AM. |
#2
|
|||
|
|||
#3
|
|||
|
|||
Building with sln specific xml file
Hi,
I have my own build.xml file which works fine at the visual studio command prompt and compiles all the projects, however I would like to incorporate this in VisualBuild using MSBuild action, is it possible , if you do hve an example this will be really helpful. Best |
#4
|
|||
|
|||
In the MSBuild action, specify the build.xml file in the Project file field on the Project tab, and the vcvarsall.bat file (as called by the VS Command Prompt) in the Command to run before main command field on the Advanced tab.
http://www.kinook.com/VisBuildPro/Ma...ildprojtab.htm http://www.kinook.com/VisBuildPro/Ma...dvancedtab.htm |
#5
|
|||
|
|||
THanks, the build.xml i am using complies all the projects fine when used after initiating "Visual Studio 2008 Command prompt" manually but when I use the same build.xml with the MSBUILD in visualbuild (as mentioned by you earlier, I get the message that "OUTPUTDIR is not specified for one of the projects"
?? |
#6
|
|||
|
|||
Take it in steps to ensure everything is setup the same in Visual Build.
1) Run Visual Build from the VS 2008 Command Prompt (start VisBuildPro<enter>), add a Run Program step that makes the same msbuild call as done manually (also set the Start in field to the working folder of the Command Prompt), and build. 2) Add a Set Current Dir step to set the build dir to the working folder of the command prompt, and following that, add a MSBuild step to call the build.xml (select any option or add flags as needed to match the manual msbuild call), and rebuild. 3) Add the vcvarsall.bat call to the MSBuild step as mentioned previously to avoid needing to start Visual Build from the VS 2008 Command Prompt, start Visual Build from a shortcut and build the project. |
|
|