We have a 50 projects solution in VS 2005.

Is any way to get incremental build if nothing was changed?

It is kind of doing it now, but it executes all prebuild and post build events for each project.

The compiling itself is not happenning, but it iterates through all projects and executes all prebuild and post build events for each project.

Is any way to prevent it?

link|improve this question
This is a duplicate question: > Build Incrementally in VS 2005 – Ray Vega Oct 23 '08 at 22:27
Exact duplicate (by the same user) of Build Incrementally in VS 2005 – Justin Aug 26 '11 at 13:16
feedback

2 Answers

See my answer in the other question.

link|improve this answer
Why would you post a duplicate answer, but not bother to vote to close the question? – Justin Aug 26 '11 at 13:16
@Justin, three years later you're asking this? – Kyralessa Aug 26 '11 at 14:07
Huh, yeah this question really is old! (Another answer on this question was flagged) – Justin Aug 26 '11 at 14:14
feedback

You could setup a separate project config, like Debug_INC, and no pre or post build events in those configs, then just run them when needed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown