Share via


/out

Allows you to specify a file to receive errors when you build using the command line arguments.

devenv /outFileName

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 contents are deleted before running the current build.

Command line build errors are displayed in the Command Prompt 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 /out "c:\MyErrorLog.txt" "c:\MySolutions\Visual Studio Projects\MySolution\MySolution.sln"

See Also

Devenv Command Line Switches | /run