elsa-core
elsa-core copied to clipboard
[BUG] console application running json workflow can not use script expression, It seems as be skiped
in elsa 3.2. use sample application running json workflow like following, Writeline activity will be skiped, why?????????
{ "name": "Hello World", "root": { "id": "Flowchart1", "type": "Elsa.Flowchart", "activities": [ { "id": "WriteLine1", "type": "Elsa.WriteLine", "text": { "typeName": "String", "expression": { "type": "JavaScript", "value": "\u0060hello world\u0060" } } } ] } }
if the expression type is "Literal", the workflow run ok. and if I debug , I can step in wriline activity code. But if the expression type is "Javascript" or "CSharp", can not enter in the writeline activity code.