c# - 无法加载文件或程序集...但一开始没有?

标签 c# .net powershell .net-assembly veeam

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

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

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

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

(参见 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 丢失,并且输入从未改变:

detailedlogswithsteps

stillsameerrorevenwithcustomexception

最佳答案

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

所以问题是这个绑定(bind):

<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,并且在安装时没有更新绑定(bind) > 所以它现在试图找到 4.2。 0.0,已经不存在了,只有 4.1.2.0。

将绑定(bind)更新为“newVersion=4.1.2.0”就成功了!

关于c# - 无法加载文件或程序集...但一开始没有?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58953619/

相关文章:

.net - 如何在 nservicebus MSMQ 中达到最大重试次数时发送电子邮件

python - 在一个位置为多个站点更新 azure token ,无需域访问

winapi - 如何使用 P/Invoke 在 PowerShell 1.0 中调用 Win32 函数?

C#在聊天脚本中将数据附加到DIV

c# - 为什么 Matching.ImplementedInterfaces 的行为与 Matching.ExactType 和 FrozenAttribute.As 不同?

c# - 是否有用于阅读 ePub 书籍的 API?

powershell - 从 .ps1 脚本设置环境变量值在 Github Actions 中不起作用

c# - 如何在 asp.net 中的回发中获取 html 控件的值

c# - 如何使用 Rx 从 SerialPort 读取数据的 "reconstruct lines"

c# - 如何从 Entity Framework 中的多个数据库/表创建单个对象