“重建一切”是什么意思?设置做什么?

发布于 2024-08-14 07:17:34 字数 51 浏览 4 评论 0原文

在 Visual Studio 中,构建菜单中有一个“全部重建”选项,它到底有什么作用?

In visual studio, there is an option to "Rebuild All" from the build menu, what exactly does it do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

仄言 2024-08-21 07:17:34

它会清理解决方案中的每个项目并重建所有项目。

It cleans every project in your solution and rebuilds all projects.

顾挽 2024-08-21 07:17:34

它确实从头开始重建所有内容,但有时您需要使用 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..

葬シ愛 2024-08-21 07:17:34

它忽略项目之间的所有依赖关系,并重建解决方案中的每个项目(就好像每个源文件都已更改)

It ignores all dependencies between projects, and rebuilds every project in the solution (as if every source file has changed)

烟─花易冷 2024-08-21 07:17:34

何时需要进行重建的示例:当您更改嵌入资源(例如 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文