本文介绍了rsErrorLoadingCodeModule:部署用于 Report Builder 2.0 的程序集的步骤是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经构建了一个带有 public static 类和返回类型为 intpublic static 方法的程序集.最终我将添加更多方法,但目前程序集仅包含一种方法.我正在尝试在我的 SSRS 报告中使用此程序集,但它导致错误:

I've built an assembly with a public static class and a public static method with a return type of int. Eventually I'll add more methods but for now the assembly contains just one method. I'm trying to use this assembly in my SSRS reports but it results in an error:

[rsErrorLoadingCodeModule]
加载代码模块时出错:‘XXX.Calcs, Version=2013.1.21.0, Culture=neutral, PublicKeyToken=null’.
详细信息:无法加载文件或程序集XXX.Calcs,版本=2013.1.21.0,Culture=neutral,PublicKeyToken=null"或其依赖项之一.系统找不到指定的文件.

我通过Report Properties -> References 引用了程序集.当我创建一个使用程序集中的方法然后构建的表达式时,出现上述错误.

I referenced the assembly through Report Properties -> References. When I create an expression that uses the method in the assembly and then build, I get the above error.

我将程序集部署到:

C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PrivateAssemblies

想法?我是否遗漏了任何步骤?

Thoughts? Am I missing any steps?

推荐答案

我发现 this 并完全按照步骤操作.

I found this and followed the steps exactly.

这篇关于rsErrorLoadingCodeModule:部署用于 Report Builder 2.0 的程序集的步骤是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 02:17