gpt4 book ai didi

visual-studio - Visual Studio 总是重新编译代码,即使它没有改变

转载 作者:行者123 更新时间:2023-12-04 19:36:32 27 4
gpt4 key购买 nike

在对我的项目进行一些更改后,Visual Studio 开始总是重新编译所有源代码,导致所有相关项目也重新编译,从而大大减慢了开发速度。这是为什么?

  • 只有当 XML 文档文件 被选中并且有一些文件带有 Copy always 时才会发生。如果您更改其中任何一项,则不会重新编译源代码。
  • 仅在 Visual Studio 中编译时发生 - 在命令行中使用 MSBuild 编译时,不会重新编译源代码。
  • Visual Studio 2012 更新 4。

最佳答案

这似乎是 Visual Studio 中的错误,当项目具有 XML 文档文件 时,使用 Copy always 检查了一些文件。

复制:

  1. 创建新项目 - C# 类库。
  2. 项目属性 => 构建 => 检查 XML 文档文件
  3. 项目 => 添加 => 新项目 => 文本文件 TextFile1.txt
  4. 将 TextFile1.txt Copy to Output Directory 更改为 Copy always
  5. 右键单击项目 => 构建
    • 项目编译
  6. 右键单击项目 => 构建

预期:不应构建项目,构建输出应显示:

========== Build: 0 succeeded, 0 failed, 1 up-to-date, 0 skipped ==========

实际:项目正在构建,输出为:

------ Build started: Project: ClassLibrary1, Configuration: Debug Any CPU ------
ClassLibrary1 -> bin\Debug\ClassLibrary1.dll
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========

调查:打开详细日志,您会看到:

Target "CoreCompile" in file "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.CSharp.targets" from project "ClassLibrary1.csproj" (target "Compile" depends on it):
Building target "CoreCompile" completely.
Output file "bin\Debug\ClassLibrary1.XML" does not exist.

在 procmon 中查看,您会看到 devenv.exe 在 MSBuild.exe 运行之前将“ClassLibrary1.XML”重命名为“vsA381.tmp”。重命名的堆栈跟踪:

KERNEL32!MoveFileW+0x17
csproj!CMoveOutOfTheWayScope::EnterScope+0x85
csproj!CVsProjBuildableProjectCfg::StartBuildProcessWithTarget+0x50b
csproj!CVsProjBuildableProjectCfg::StartBuildProcess+0xc
csproj!CVsProjBuildableProjectCfg::StartBuildEx+0x15
msenv!CSUIBuilder::DoBuild+0x1a3
msenv!CSUIBuilder::Run+0x66

关于visual-studio - Visual Studio 总是重新编译代码,即使它没有改变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21023013/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com