How to fix visual studio 'projects out of date' message each time I run it

后端 未结 5 1164
刺人心
刺人心 2021-02-06 02:26

I have a visual studio (2005) solution file with 70 projects.
Each time I press F5 to run it, it tells me that 4 of the projects are out of date, and asks me if I want to re

5条回答
  •  别跟我提以往
    2021-02-06 02:43

    I had the same problem with linking a .netmodule into my project that was complied with a custom build step. The prolem turned out to be that I was also linking a C++ lib and the .netmodule file was listed on the same line in the linker input.

    Example: .lib .netmodule

    Insead of: .lib \n .netmodule

提交回复
热议问题