Skip to content
Rod-at-DOH edited this page Jul 26, 2023 · 1 revision

Welcome to the RemoveTFSTeam wiki!

List all .sln recursively, using PowerShell

ls . *.sln -Recurse | % { if ($_.PsIsContainer) { $_.FullName + "\" } else { $_.FullName } }

Clone this wiki locally