无法将 WebTestPlugin 添加到 .webtest
Cannot add WebTestPlugin to .webtest
我在 Visual Studio 中有一个 WebTest。我在我的测试项目中创建了一个自定义 WebTestPlugin
,它引用了一堆程序集。现在,当我单击 Add Web Test Plug-in
时,会出现一个错误对话框:
Could not load file or assembly 'Microsoft.Practices.ServiceLocation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
我已经检查了项目输出并且该文件存在于那里。我也有 运行 procmon,当我点击 Add Web Test Plug-in
时,计算机确实扫描了很多位置并找到了很多匹配项。
有什么线索可以解释为什么会这样吗?
您的自定义插件使用了一些其他程序集中的对象。当您引用 WebTestPlugIn 时,必须引用这些程序集。
我在 Visual Studio 中有一个 WebTest。我在我的测试项目中创建了一个自定义 WebTestPlugin
,它引用了一堆程序集。现在,当我单击 Add Web Test Plug-in
时,会出现一个错误对话框:
Could not load file or assembly 'Microsoft.Practices.ServiceLocation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
我已经检查了项目输出并且该文件存在于那里。我也有 运行 procmon,当我点击 Add Web Test Plug-in
时,计算机确实扫描了很多位置并找到了很多匹配项。
有什么线索可以解释为什么会这样吗?
您的自定义插件使用了一些其他程序集中的对象。当您引用 WebTestPlugIn 时,必须引用这些程序集。