如何发布具有多个程序集的 Dynamics CRM4 插件?
我的插件 DLL 非常简单,但引用了大约 15 个其他 DLL。 我如何注册这个?
My plugin DLL is really simple but references fifteen or so other DLLs. How do I register this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道的方法有:
a) 将其他程序集放入 GAC 中(我认为这是 SDK 首选方法)。 如果需要在线,则必须在每个客户端上安装。
b) 使用 ILMerge 将所有程序集合并为一个程序集。 您可以将其部署到数据库并让离线客户端使用它,而无需单独安装。
Ways I know about are:
a) Put the other assemblies in the GAC (I think this is SDK preferred method). Will have to install on each client if needs to be taken online.
b) Use ILMerge to merge all of your assemblies into one assembly. You can deploy this to the database and have it used by your offline clients without a seperate install.