In the Windows Explorer I right click a DLL, choose Properties then the Version tab.
In the 'Other Version Information' area, under 'Item Name' there is a custom field called 'SVNBuildVerion'.
How can I retrieve that with PowerShell?
I've tried :
dir $targetDLL | select -ExpandProperty VersionInfo | fl * -force
[System.Diagnostics.FileVersionInfo]::GetVersionInfo($targetDLL) | fl * -Force