Make compile silent in VS2005

  • Thread starter Thread starter B.
  • Start date Start date
B

B.

How can I make the compile silently so that during the compiling of the
solution, the .cs files name will not be listed in the output window?

Thanks.
 
Hello B.,

Emmmm... what's the reason?

Don't think it's ever possible

B> How can I make the compile silently so that during the compiling of
B> the solution, the .cs files name will not be listed in the output
B> window?
B>
B> Thanks.
B>
---
WBR,
Michael Nemtsev [C# MVP] :: blog: http://spaces.live.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 
Not sure either. It will be cool when/if they powershell-izify VS. So you
could pipe output to a script (set using a property for example) which could
filter, sort, tee, use PowerGadgets, etc. There are lots of places where
wedges like this would be handy.

--
William Stacey [C# MVP]

| Hello B.,
|
| Emmmm... what's the reason?
|
| Don't think it's ever possible
|
| B> How can I make the compile silently so that during the compiling of
| B> the solution, the .cs files name will not be listed in the output
| B> window?
| B>
| B> Thanks.
| B>
| ---
| WBR,
| Michael Nemtsev [C# MVP] :: blog: http://spaces.live.com/laflour
|
| "At times one remains faithful to a cause only because its opponents do
not
| cease to be insipid." (c) Friedrich Nietzsche
|
|
 
There must be settings somewhere. My coworkers don't have problem. They
just have few lines in output window like:
------ Build started: Project: ....., Configuration: Debug Any CPU
------
Compile complete -- 0 errors, 0 warnings
....-> C:\Source\V150\Dotnet\........

But mine has all the .cs files listed between their first and second
lines.
 
Back
Top