Types/LibGit2Sharp.RepositoryStatus.Types.ps1xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<Types> <Type> <Name>LibGit2Sharp.RepositoryStatus</Name> <Members> <ScriptProperty> <Name>ChangedInIndex</Name> <GetScriptBlock> $this | Where-Object { $null -ne $_.IndexChange } </GetScriptBlock> </ScriptProperty> <ScriptProperty> <Name>ChangedInWorkdir</Name> <GetScriptBlock> $this | Where-Object { $null -ne $_.WorkDirChange } </GetScriptBlock> </ScriptProperty> </Members> </Type> </Types> |