场景:当一个workflow custom activity assembly 已经有多个custom activity ,而且这些activity已经运用于系统中时,在这个workflow assembly中新增加了一个custom activity,需要把它部署到CRM系统中。
问题:用PluginRegistration 来unregister 这个assembly ,然后register 这个assembly的时候,会unregister 不了,原因是系统中已经运行了assembly 中的 一些 custom activity 。
解决方案1: 在系统中找到已经运行的那些activity所在的 workflow instance,把它们都删除掉,就可以成功的unregister了。
解决方案2: 直接用PluginRegistration 来update workflow assembly,要注意默认新增加的activity是没选中的,要选中新增加的activity然后update 就可以了。