1

我有一个用于归档 Exchange 邮箱的 C#/.NET Windows 服务,我最近“打包”了 Veeam O365 Backup DLL,以便能够自动备份 Exchange Online 邮箱。

我将向您展示一些日志,显示该程序运行了一段时间没有问题,然后开始突然失败并出现错误:

  • 无法加载文件或程序集‘System.IO.Compression, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089’或其依赖项之一。找到的程序集的清单定义与程序集引用不匹配。

...直到服务重新启动:

(见Edit1,我的照片被覆盖了)

堆栈跟踪:

System.Management.Automation.CmdletInvocationException: Could not load file or assembly 'System.IO.Compression, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) ---> System.IO.FileLoadException: Could not load file or assembly 'System.IO.Compression, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
   at Veeam.Core.FileLoggerTransport.AutoArchive()
   at Veeam.Core.FileLoggerTransport.ArchiveAndDelete()
   at Veeam.Core.FileLoggerTransport.ControlLogSize()
   at Veeam.Core.FileLoggerTransport.WriteLine(UInt32 level, String message)
   at Veeam.Core.LoggerTransport.LogDefault(UInt32 level, String message, Object[] args)
   at Veeam.PowerShell.Core.BasePSCmdlet.BeginProcessing()
   at System.Management.Automation.Cmdlet.DoBeginProcessing()
   at System.Management.Automation.CommandProcessorBase.DoBegin()
   --- End of inner exception stack trace ---
   at System.Management.Automation.Runspaces.PipelineBase.Invoke(IEnumerable input)
   at System.Management.Automation.PowerShell.Worker.ConstructPipelineAndDoWork(Runspace rs, Boolean performSyncInvoke)
   at System.Management.Automation.PowerShell.Worker.CreateRunspaceIfNeededAndDoWork(Runspace rsToUse, Boolean isSync)
   at System.Management.Automation.PowerShell.CoreInvokeHelper[TInput,TOutput](PSDataCollection`1 input, PSDataCollection`1 output, PSInvocationSettings settings)
   at System.Management.Automation.PowerShell.CoreInvoke[TInput,TOutput](PSDataCollection`1 input, PSDataCollection`1 output, PSInvocationSettings settings)
   at System.Management.Automation.PowerShell.Invoke(IEnumerable input, PSInvocationSettings settings)
   at VeeamArchiverConnector.VeeamArchiverConnector.ConnectToVeeamServer(String serverName, Int32 port)
   at REMOVED.DeprovisionObject.DeprovisionOnline(String deprovisioningOu) in C:\Users\REMOVED\Source\Repos\ExchangeProvisioning\Deprovisioning\DeprovisionObject.cs:line 442
   at REMOVED.DeprovisionObject.Start() in C:\Users\REMOVED\Source\Repos\ExchangeProvisioning\Deprovisioning\DeprovisionObject.cs:line 125 

该项目确实引用了System.IO.Compression,尽管:

  • Nuget 包版本是“4.3.0”
  • 参考上的版本是“4.1.2.0”
  • 构建后的文件版本为“4.6.24704”

在我的 .csproj 文件中,我有这个:

<Reference Include="System.IO.Compression, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
      <HintPath>..\packages\System.IO.Compression.4.3.0\lib\net46\System.IO.Compression.dll</HintPath>
      <Private>True</Private>
      <Private>True</Private>
</Reference>

我无权访问“Veeam.Core.*”的代码/项目,因为它们是 Veeam O365 备份安装程序随附的 Veeam DLL。

但是在全球范围内,我不明白的是,它工作了一段时间(通常大约一两个小时),然后除非我重新启动服务,否则错误就会开始?

欢迎任何建议!

谢谢


编辑 1:

我在我的“Veeam 连接器”项目中添加了更多日志和自定义异常抛出,但它是同一件事:最终错误仍然是关于 System.IO.Compression 丢失,并且输入从未改变:

详细的日志和步骤

即使有自定义异常仍然相同的错误

4

2 回答 2

3

@howcheng 谢谢!这样就成功了,服务运行了多个小时,没有任何问题。

所以问题是这个绑定:

<assemblyIdentity name="System.IO.Compression" publicKeyToken="b77a5c561934e089" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />

那是重定向到 4.2.0.0。我想它在我唯一的 .NETFramework 项目上很好,但正如你所提到的,.NETStandard System.IO.Compression 强制使用 4.1.2.0 版本,并且在安装时没有更新绑定 > 所以它现在正试图找到 4.2。 0.0,没有了,只有 4.1.2.0。

将绑定更新为“newVersion=4.1.2.0”就可以了!

于 2019-11-22T15:50:17.427 回答
0

我有同样的问题。一个netstandard2.0库正在使用System.IO.Compression并从 .NET Fx 4.7.2 测试项目中使用。尝试从代码加载System.IO.Compression时发生无法加载文件或程序集“System.IO.Compression,Version=4.2.2.0,Culture=neutral”异常。netstandard2.0

修复只是为了

  1. 来自 .NET Fx 4.7.2 测试项目的参考System.IO.Compression

  2. 从测试中调用此方法,这样System.IO.Compression是从 .NET Fx 环境中解析的。

    private static void AvoidCannotLoadSystemIOCompressionException() {
     var justToAvoidStrangeException = ZipArchiveMode.Create;
    }
    

奇怪但它有效

于 2022-02-22T13:16:38.007 回答