MSTest 无法从网络共享加载 dll

MSTest fails to load dll from network share

我是 运行 MSTest(在 Microsoft Azure VM 上)来测试网络文件共享(链接到 Azure 文件存储)中的 DLL。

我收到这个错误 -

Could not load file or assembly 'file:///P:\test\bin\mydll.dll' or one of its dependencies. Operation is not supported. (Exception from HRESULT: 0x80131515)

解决方案 1:

将包含 dll 及其依赖项的文件夹从网络共享复制到本地磁盘,然后从那里 运行 复制它。

解决方案 2:

此解决方案更可取,因为它节省了复制步骤。

找到包含 MSTest.exe 的文件夹。就我而言:

C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE

打开 MSTest.exe.config(它应该已经存在)并在 <runtime> 下添加以下行:

<loadFromRemoteSources enabled="true"/>

在上下文中:

<configuration>
   <runtime>
      <loadFromRemoteSources enabled="true"/>
   ...

发件人:MSDN: <loadFromRemoteSources> element.

令人困惑的是,它说:

In the .NET Framework 4.5, assemblies on local network shares are run as full trust by default; you do not have to enable the <loadFromRemoteSources> element.

我的目标是 .NET 4.5,但在启用 loadFromRemoteSources 之前我遇到了错误。