Error while removing project dependency in VS2010

前端 未结 8 1785
甜味超标
甜味超标 2020-12-30 19:16

I have a large solution with number of projects. Some the projects depend on others (never a circular dependency though).

When I tried to remove a dependency of a p

8条回答
  •  一整个雨季
    2020-12-30 19:46

    I sometimes get this problem when I try to manually edit projects/solutions generated by our CMake system. I solve it manually:

    • Open the dependent .vcproj file in your favorite text editor.
    • Find tag corresponding to the dependency you want to remove (the include attribute of the tag will contain the name of the dependency project).
    • Remove the whole element (i.e. starting with and ending with inclusive). Save the file.
    • Reload the solution.

提交回复
热议问题