/Out (devenv.exe)

Specifies a file to store and display errors when you run, build, rebuild, or deploy a solution.

devenv /out FileName

Arguments

  • FileName
    Required. The path and name of the file to receive errors when you build an executable.

Remarks

If a file name that does not exist is specified, the file is created automatically. If the file already exists, the results are appended to the existing contents of the file.

Command line build errors are displayed in the Command window and the Solution Builder view of the Output window. This option is useful if you are running unattended builds and need to see the results.

Example

This example runs MySolution and writes errors to the file MyErrorLog.txt.

devenv /run "C:\Documents and Settings\someuser\My Documents\Visual Studio\Projects\MySolution\MySolution.sln" /out "C:\MyErrorLog.txt"

See Also

Reference

Devenv Command Line Switches

/Run (devenv.exe)

/Build (devenv.exe)

/Rebuild (devenv.exe)

/Deploy (devenv.exe)