dcw
dcw

Reputation: 3555

Suppressing command-line from Visual Studio (05/08) output

I'm trying to suppress the command-line from the output in Visual Studio - my plan is to add /nologo to the command-line - but I can't find a place in the application settings or in the IDE settings to do this.

I'm probably missing something obvious, but would really appreciate any enlightenment.

Edit: What is causing me the problem can best be described by the following scenario:

The fact that these are output for every project (esp. when those projects don't have warnings or errors) makes my stepping any bona-fide warnings/errors a right royal PITA. I want to have the IDE not display these pointless information lines.

Upvotes: 0

Views: 583

Answers (2)

JamieH
JamieH

Reputation: 1297

Tools | Options | Projects and Solutions | Build and Run | MSBuild project build output verbosity -> Quiet

Upvotes: 1

rfeague
rfeague

Reputation: 423

The question isn't quite clear. By default in VS2005, if you right-click a project, select properties, and look under Configuration Properties -> C/C++ -> General, I think you'll see Suppress Startup Banner: Yes (/nologo) This suppresses some banner info from the compiler. Is that what you want?

Upvotes: 0

Related Questions