2

我使用 Hudson 作为持续集成服务器。这些工作最终启动了 MSBuild。每个人偶尔,我的构建失败,MSBuild 出现非代码编译错误:

C:\WINDOWS\Microsoft.NET\Framework\v3.5\Microsoft.Common.targets(2703,9): error MSB3021: Unable to copy file "..\Lib\Microsoft\Microsoft.Practices.Unity.Configuration.dll" to "bin\Debug\Microsoft.Practices.Unity.Configuration.dll". Access to the path 'bin\Debug\Microsoft.Practices.Unity.Configuration.dll' is denied.

当我检查 'bin\Debug\Microsoft.Practices.Unity.Configuration.dll' 时,我发现它是一个 0 字节文件。

我不知道为什么这个文件有问题。有任何想法吗?

4

4 回答 4

6

MS Build Copy 任务具有未记录的功能,至少 Google 保持沉默。如果设置系统范围的环境变量 MSBUILDALWAYSRETRY=1 此任务将重试复制文件,即使它在复制操作期间出现访问被拒绝异常

输出示例

C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets (3513): Got System.UnauthorizedAccessException: Access to the path 'C:\Builds\8\28\Binaries\Release\fr\System.Spatial.resources.dll' is denied.
   at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
   at System.IO.File.InternalCopy(String sourceFileName, String destFileName, Boolean overwrite, Boolean checkHost)
   at System.IO.File.Copy(String sourceFileName, String destFileName, Boolean overwrite)
   at Microsoft.Build.Tasks.Copy.CopyFileWithLogging(FileState sourceFileState, FileState destinationFileState)
   at Microsoft.Build.Tasks.Copy.DoCopyWithRetries(FileState sourceFileState, FileState destinationFileState, CopyFileWithState copyFile) copying C:\Builds\8\28\Sources\Main\Solutions\packages\System.Spatial.5.2.0\lib
et40\fr\System.Spatial.resources.dll to C:\Builds\8\28\Binaries\Release\fr\System.Spatial.resources.dll and HR is -2147024891
 C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets (3513): Retrying on ERROR_ACCESS_DENIED because MSBUILDALWAYSRETRY = 1
 C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets (3513): Could not copy "C:\Builds\8\28\Sources\Main\Solutions\packages\System.Spatial.5.2.0\lib
et40\fr\System.Spatial.resources.dll" to "C:\Builds\8\28\Binaries\Release\fr\System.Spatial.resources.dll". Beginning retry 1 in 1000ms. Access to the path 'C:\Builds\8\28\Binaries\Release\fr\System.Spatial.resources.dll' is denied.
于 2013-03-23T06:45:43.140 回答
1

听起来像一个进程正在打开 bin\Debug\Microsoft.Practices.Unity.Configuration.dll。您可以通过将“bin”重命名为其他名称(例如“bin-old”,然后删除“bin-old”)来检查是否有任何进程将“bin”中的文件保持打开状态,重命名将失败。

于 2009-07-16T16:01:22.560 回答
0

使用 SysInternals (Microsoft) 的 Handle.exe 查看哪些文件正在被哪些进程打开。

当您收到错误时,在 cmd 提示符下运行它;Handle.exe > OpenFile.txt Notepad.exe OpenFile.txt

然后在 OpenFile.txt 中搜索被锁定的文件,您将看到该过程。

瑞安

于 2009-07-16T16:04:16.423 回答