Skip to content

Instantly share code, notes, and snippets.

@zaqmor
Created November 30, 2018 20:20
Show Gist options
  • Save zaqmor/1f6ca06c2f9e91788247c160ac6fbe6b to your computer and use it in GitHub Desktop.
Save zaqmor/1f6ca06c2f9e91788247c160ac6fbe6b to your computer and use it in GitHub Desktop.
Powershell: Get all C# projects in a directory as full path strings
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