I have a solution consisting of 2 projects. One is a DLL, and the other is a console app making use of this DLL (runtime). The console app is set as my active project and when I run (F5), it is started (optionally rebuilt first).
I want to make Visual Studio 2开发者_运维问答010 rebuild the DLL project everytime I run my console app. How can I do this?
If you right click on the solution and select "Project Dependencies" you can tell it that your exe depends on the DLL and it should rebuild the DLL (if needed) when you build the exe.
精彩评论