0
我正在創建一個應用程序重新託管工作流設計器,並且可以加載僅限於xoml的工作流。重新託管工作流設計器
當我反序列化我的僅xoml工作流程。有一個錯誤,指出:{「無法反序列化對象類型‘MyCustomActivity’無法解析」}
我XOML看起來是這樣的:
<SequentialWorkflowActivity x:Name="Workflow2" xmlns:ns0="clr-
namespace:MyCustomActivities;Assembly=MyCustomActivities, Version=1.0.0.0,
Culture=neutral, PublicKeyToken=null" xmlns:x="http://schemas.microsoft.com/winfx
/2006/xaml" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/workflow">
<ns0:MyCustomActivity x:Name="myCustomActivity1" /></SequentialWorkflowActivity>
我有點停留在此,我的工作流程非常基礎。我只是想加載它,看看我能否看到它。
MyCustomActivities是一個包含我所有自定義活動的庫。
什麼部分你不明白?設計師不知道你的圖書館。 – 2009-12-04 19:32:42
謝謝,我將庫複製到可執行文件目錄並且它工作正常。 – pdiddy 2009-12-04 20:09:41