Currently in version 1.3.2, the Get-Task and Get-TodoList Cmdlets declare their output type as
- [OutputType([Task])]
+ [OutputType("Task")]
By passing Task as a string to the OutputType attribute, tab completion no longer works for things like
gtask 1 | select <TAB> # properties
While that's not exactly a bug, it's a nice-to-have feature that improves the user experience quite a lot in my opinion.
Currently in version
1.3.2, theGet-TaskandGet-TodoListCmdlets declare their output type asBy passing
Taskas a string to theOutputTypeattribute, tab completion no longer works for things likeWhile that's not exactly a bug, it's a nice-to-have feature that improves the user experience quite a lot in my opinion.