You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Steps to Reproduce:
This is related to this CoreWF (the non-official port of Windows Workflow Foundation) issue: UiPath/CoreWF#208
Due to the lack of VbHostedCompiler in .NET Framework, CoreWF has to use roslyn JIT compiler to emit DLL assembly from the script code, and then load the assembly to create a LambdaExpression. This is very slow.
As we port our product to .NET 6, it sees significant performance degradation on the first run of the workflow. We are using CodeActivity a lot, so this VBScript to LambdaExpression is critical to us.