Created
November 30, 2018 20:20
-
-
Save zaqmor/1f6ca06c2f9e91788247c160ac6fbe6b to your computer and use it in GitHub Desktop.
Powershell: Get all C# projects in a directory as full path strings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
get-childitem -recurse -inc "*.csproj" | select-object -expandproperty FullName |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment