System.TypeLoadException: 'Could not load type 'WorkflowCore.Primitives.Sequence' from assembly 'WorkflowCore.TestAssets'.' when running unit test with Json Saga definition #1312
I'm trying to implement saga rollback in case of failure of workflow step, but i have several problems, starting with this one.
In order to learn how this lib actually works, i pulled repo from github, changed content of stored-definition.json file to include saga sample from documentation (see json below) and tried to run " [Fact(DisplayName = "Should parse definition")]" unit test from DefinitionLoaderTests.cs class.
Test is failing with error System.TypeLoadException: 'Could not load type 'WorkflowCore.Primitives.Sequence' from assembly 'WorkflowCore.TestAssets'.'
I'm trying to implement saga rollback in case of failure of workflow step, but i have several problems, starting with this one. In order to learn how this lib actually works, i pulled repo from github, changed content of stored-definition.json file to include saga sample from documentation (see json below) and tried to run " [Fact(DisplayName = "Should parse definition")]" unit test from DefinitionLoaderTests.cs class.
Test is failing with error
System.TypeLoadException: 'Could not load type 'WorkflowCore.Primitives.Sequence' from assembly 'WorkflowCore.TestAssets'.'
To Reproduce