VS2010 always rebuilds solution?

前端 未结 2 1146
予麋鹿
予麋鹿 2021-01-06 14:08

I have a solution with 40 projects in it. I\'ve recently reconfigured output path for each of these projects to this value:

..\\Output

Change was made in *.c

相关标签:
2条回答
  • 2021-01-06 14:22

    This issue is solved by changing the project files, cleaning solution, deleting all bin folders by hand, restarting Visual studio and rebuilding everything.

    0 讨论(0)
  • 2021-01-06 14:33

    I would guess that the assemblies that get rebuilt are referenced from the project you are trying to build? Check the references in one of the projects, and see if this is correct. If so, you might try to adjust the properties for each reference, such as "Copy Local", and/or "Specific Version"; maybe each project "thinks" it needs to rebuild the other projects it references in order to achieve the same version number or something like that.

    0 讨论(0)
提交回复
热议问题