How can i turn on incremental builds in VS2010? I’ve noticed that my project rebuild everything each time i press build. Is there any option in VS to turn this on? Or should i modify *.csproj on my own?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Projects should build incrementally already (just make sure that you do
Buildinstead ofRebuild). The best way to check if incremental building works is to run the build from the command line. The second time you build it should take almost no time.If things are still getting rebuilt, then perhaps you’ve modified your projects in some way that’s messing up with the build order. Looking at the build logs (via the
/voption) can help you poinpoint what’s going on.