2017-02-03 9 views
0

ワークフローサービスでエラーが発生しました。私はGoogleで検索しましたが、役に立つ情報は見つかりませんでした。私はこのリンクを見つけましたが、それを理解することはできません。 https://social.msdn.microsoft.com/Forums/vstudio/en-US/ba29b516-7ff4-4fea-b0a5-5ebda5283664/xaml-node-stream-missing-currentobject-before-endobject?forum=wfprereleaseXAMLノードストリーム:EndObjectより前のCurrentObjectがありません

問題がランダムに発生した内部例外が誰かが答えを必要とする念の

at System.Xaml.XamlObjectWriter.WriteEndObject() at System.Xaml.XamlObjectWriter.Dispose(Boolean disposing) at System.Xaml.XamlWriter.System.IDisposable.Dispose() at System.Activities.XamlIntegration.ActivityXamlServices.InitializeComponentFromXamlResource(Type componentType, String resource, Object componentInstance, XamlSchemaContext schemaContext) at System.Activities.XamlIntegration.ActivityXamlServices.InitializeComponent(Type componentType, Object componentInstance)

答えて

0

です: プロジェクトから、System.Activities.Presentation、PresentationCore、PresentationFrameworkのための参照を削除しWindowsBaseモジュール。

また、GCモードをチェックすると、実行時に複数のコアで実行するメリットがあります。 https://docs.microsoft.com/en-us/dotnet/framework/configure-apps/file-schema/runtime/gcserver-element

<configuration> 
    <runtime> 
     <gcServer enabled="true"/> 
    </runtime> 
</configuration> 

は詳細についてはgcServerのマニュアルを参照してください:サーバーモードを有効にするには

関連する問題