Skip to content

Instantly share code, notes, and snippets.

@johnmmoss
Last active August 4, 2017 14:58
Show Gist options
  • Save johnmmoss/10a5d6050719dcf736ae6e1522fc9d97 to your computer and use it in GitHub Desktop.
Save johnmmoss/10a5d6050719dcf736ae6e1522fc9d97 to your computer and use it in GitHub Desktop.
gci -Path E:\Code -Filter *.sln -Recurse | % {
$exists = (select-string "^Project.*`"$ProjectName`"" $_.FullName).Matches.Count
if ($exists -gt 0) {
write-host $_.FullName -ForegroundColor green
} else {
write-host $_.FullName -ForegroundColor gray
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment