I have the following setup:

  • Project A
  • Project B depends on A

Each project has pre and post build events. Most of the time I make changes in project B. So every time I tell VS to only compile project B the other project is compiled too. This happens despite the facts that no changes where done to A and a up to date DLL for A is present.

How do I tell VS to only compile project B in this case?

Thanks in advance

link|improve this question

78% accept rate
feedback

3 Answers

up vote 0 down vote accepted

If you right click on the solution and select configuration manager you can tell the projects not to build.

link|improve this answer
feedback

This isn't very healthy, do make sure that Build + Rebuild works to verify that no circular dependency snuck in. Next step is to get more diagnostic info out of msbuild to see why it thinks it needs to build A. Tools + Options, Projects and Solutions, Build and Run. Change the MSBuild project build output verbosity setting to "Diagnostic".

link|improve this answer
feedback

You can use Shift-F6 to build an individual project.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.