“重建一切”是什么意思?设置做什么?
在 Visual Studio 中,构建菜单中有一个“全部重建”选项,它到底有什么作用?
In visual studio, there is an option to "Rebuild All" from the build menu, what exactly does it do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
它会清理解决方案中的每个项目并重建所有项目。
It cleans every project in your solution and rebuilds all projects.
它确实从头开始重建所有内容,但有时您需要使用 clean 来清除堆叠到构建环境中的一些旧文件...
我不知道为什么(还),但经验表明有时即使使用重建全部,也需要进行清理。 。
It does rebuilds everything from scratch, but sometimes you need to use clean to clear some old files that stack into the build environment...
I don't know why (yet) but experiences shows sometime a clean is necessary even using rebuild all..
它忽略项目之间的所有依赖关系,并重建解决方案中的每个项目(就好像每个源文件都已更改)
It ignores all dependencies between projects, and rebuilds every project in the solution (as if every source file has changed)
何时需要进行重建的示例:当您更改嵌入资源(例如 xml 文件、图像)时,您将需要进行重建以确保更改包含在程序中 - 嵌入资源不被视为是编译时的依赖。
An example of when you need to do a rebuild: When you change an embedded resource (e.g. xml file, image), you will need to do a rebuild to ensure that the changes are included in the program - embedded resources are not considered to be a dependency when compiling.