Since version 5.5.0 the TaskDefinition.Actions.Count is always zero for XP.
Code Example:
```
Dim AllTasks() As Task = ts.FindAllTasks(New System.Text.RegularExpressions.Regex("."), False)
For i As Integer = 0 To AllTasks.Length - 1
' AllTasks(i).Definition.Actions.Count is always zero for XP
Next
```
Comments: Thank you. I have corrected the issue and version 2.5.6, to be released later today, will have it included.
Code Example:
```
Dim AllTasks() As Task = ts.FindAllTasks(New System.Text.RegularExpressions.Regex("."), False)
For i As Integer = 0 To AllTasks.Length - 1
' AllTasks(i).Definition.Actions.Count is always zero for XP
Next
```
Comments: Thank you. I have corrected the issue and version 2.5.6, to be released later today, will have it included.