本地调试时发生运行时异常:FileNotFoundException:无法加载文件或程序集Microsoft.Rest.ClientRuntime.resources

时间:2019-05-30 14:17:15

标签: visual-studio debugging nuget-package filenotfoundexception

我收到此错误:

  

托管调试助手“ BindingFailure”     消息=托管调试助手'BindingFailure':'显示名称为'Microsoft.Rest.ClientRuntime.resources'的程序集无法加载到ID为3的AppDomain的'Load'绑定上下文中。失败的原因是:系统。 IO.FileNotFoundException:无法加载文件或程序集“ Microsoft.Rest.ClientRuntime.resources,Version = 2.0.0.0,Culture = en-US,PublicKeyToken = 31bf3856ad364e35”或其依赖项之一。系统找不到指定的文件。'

我没有找到有关此文件的信息:Microsoft.Rest.ClientRuntime.resources

这是我的packages.cofig文件:

<?xml version="1.0" encoding="utf-8"?>
<packages>
  <package id="Microsoft.Azure.KeyVault" version="3.0.3" targetFramework="net452" />
  <package id="Microsoft.Azure.KeyVault.Core" version="3.0.3" targetFramework="net452" />
  <package id="Microsoft.Azure.KeyVault.WebKey" version="3.0.3" targetFramework="net452" />
  <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="5.0.5" targetFramework="net452" />
  <package id="Microsoft.Rest.ClientRuntime" version="2.3.18" targetFramework="net452" />
  <package id="Microsoft.Rest.ClientRuntime.Azure" version="3.3.18" targetFramework="net452" />
  <package id="MSTest.TestAdapter" version="1.4.0" targetFramework="net452" />
  <package id="MSTest.TestFramework" version="1.4.0" targetFramework="net452" />
  <package id="Newtonsoft.Json" version="6.0.8" targetFramework="net452" />
  <package id="Selenium.Support" version="3.141.0" targetFramework="net452" />
  <package id="Selenium.WebDriver" version="3.141.0" targetFramework="net452" />
</packages>

参考文献:

</Reference>
<Reference Include="Microsoft.Rest.ClientRuntime, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  <HintPath>$(PkgMicrosoft_Rest_ClientRuntime)\lib\net452\Microsoft.Rest.ClientRuntime.dll</HintPath>
  <Private>True</Private>
</Reference>
<Reference Include="Microsoft.Rest.ClientRuntime.Azure, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  <HintPath>$(PkgMicrosoft_Rest_ClientRuntime_Azure)\lib\net452\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath>
  <Private>True</Private>
</Reference>

Microsoft.Rest.ClientRuntime的属性参考: enter image description here

我从乞求那里重新安装了所有的小工具,但是没有用。 我该怎么办?

0 个答案:

没有答案