Is there a way to relink a solution without rebuilding any project?

build-process, c++, linker, visual-c++, visual-studio-2008

Solution

Isn't there an option in the context menü of the project? Only Project -> link only ? Sorry I just translated it from my german dev studio 2008.

Problem

I have a big C++ solution in Visual Studio 2008 with many projects, that links to other libraries. sometimes I want to link the solution to different libraries, and for doing so and create a new exe file I need to re-linking the solution. But, the re-linking can be done only if at least one of projects need a rebuild. so I manually change one line in the code and change it back... Is there a better way to only redo the linking process?

Original source