Tamás Szelei
Tamás Szelei

Reputation: 23921

C# project NOT being rebuilt after modifications and starting Debug

If I make a modification and don't explicitly tell it to rebuild, it won't. How can I get back to the old behaviour (attempt a rebuild before debug if the source was modified)?

Upvotes: 5

Views: 5333

Answers (4)

Philip Fourie
Philip Fourie

Reputation: 116847

It sounds like the the project is not set to Build in the Configuration Manager. Double check it here: Build -> Configuration Manager

Upvotes: 1

JJ_Jason
JJ_Jason

Reputation: 369

Right click on Solution-> Properties -> conf Properties, check 'build' next to the project.

Upvotes: 0

Dejo
Dejo

Reputation: 2148

Open Configuration manager and under the active solution configuration check build checkbox.

Upvotes: 16

Henrik
Henrik

Reputation: 23324

Under Tools/Options/Projects and Solution/Build and Run there is a Combobox titled "On run, when projects are out of date". Select "Always build".

Upvotes: 10

Related Questions