Why is Visual Studio 2008 always rebuilding my whole project?

前端 未结 18 1816
栀梦
栀梦 2021-02-05 18:22

I have a Visual Studio project with about 60 C++ source files. I can do a build, and it completes without errors. But if I immediately hit F7 again, it always re-compiles about

18条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-05 19:00

    There is similar issue with project rebuild. Visual Studio does not recompile but re-links a project every time on F7 hit.

    Fix is simple. Try to open in Editor all files included into project (from Solution Explorer double click on each file) and remove from solution those files which do not exist.

提交回复
热议问题