views:

62

answers:

1

I have an executable project A, which references to a Class Library project B. However, when I build A, it does not automatically rebuild B. The only way to get B rebuilt and used by A is to rebuild B then build A.

Is there a way I can get B to be rebuilt automatically and then used by A when I build A?

+2  A: 

Check B in your solution configuration.

thelost
Specifically, that dropdown that says "Debug / Release", choose "Configuration Manager".
Kirk Woll
Thanks. Just to clarify it was: `Right click on Solution > Properties > Configuration > Check "Build" next to project`
Callum Rogers