Helena Smith
Helena Smith

Reputation:

Incremental Building in VS 2005?

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?

Upvotes: 0

Views: 168

Answers (2)

Ryan Lundy
Ryan Lundy

Reputation: 210180

See my answer in the other question.

Upvotes: 1

cbrulak
cbrulak

Reputation: 15629

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.

Upvotes: 0

Related Questions