Moles 和 SharePoint 行为类型

发布于 2024-11-06 16:13:26 字数 328 浏览 1 评论 0原文

我们在使用以下代码时遇到问题:

        BSPSite site = new BSPSite();
        BSPWeb web = site.SetRootWeb();

错误是: 无法加载文件或程序集“System.Moles,Version=4.0.0.0,Culture=neutral,PublicKeyToken=0ae41878053f6703”或其依赖项之一。系统找不到指定的文件。

我们尝试将源代码中的 Behavoir 程序集重建为 .NET 4,但没有成功。我们使用的是 v0.94。

任何帮助将不胜感激。

We are having problems with the following code:

        BSPSite site = new BSPSite();
        BSPWeb web = site.SetRootWeb();

The error is :
Could not load file or assembly 'System.Moles, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0ae41878053f6703' or one of its dependencies. The system cannot find the file specified.

We have tried rebuilding the Behavoir assembly in the source code to .NET 4 but that didn't go through. We are using v0.94.

Any help would be appreciates.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

吃→可爱长大的 2024-11-13 16:13:26

1) 转到 C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PrivateAssemblies

2) 查找 Microsoft.Moles.VsHost.x86.exe.config

3) 通过在运行时添加下一行来打开并更改

<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
           <dependentAssembly>
                     <assemblyIdentity name="System.Moles" publicKeyToken="0ae41878053f6703" culture="neutral"/>
                     <bindingRedirect oldVersion= "4.0.0.0"
                                              newVersion= "2.0.0.0"/>
            </dependentAssembly>

     </assemblyBinding>

1) Go to C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PrivateAssemblies

2 ) Find Microsoft.Moles.VsHost.x86.exe.config

3) Open and alter by adding next lines under runtime

<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
           <dependentAssembly>
                     <assemblyIdentity name="System.Moles" publicKeyToken="0ae41878053f6703" culture="neutral"/>
                     <bindingRedirect oldVersion= "4.0.0.0"
                                              newVersion= "2.0.0.0"/>
            </dependentAssembly>

     </assemblyBinding>
枯叶蝶 2024-11-13 16:13:26

删除所有 .moles 相关文件和 .moles 引用。

然后为每个组件添加 Moles 参考(右键单击“参考”下的原始组件,然后选择“添加 Moles 参考”)。这将使 .dll 重新生成新的 Moles 版本。

Delete all the .moles related files and the .moles references.

Then add the Moles reference for each of the assemblies (right click on the original assembly under References and select Add Moles Reference). This will make the .dlls regenerate for the new Moles version.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文