Created
July 19, 2018 20:51
-
-
Save zeqk/384d1e4eb5d9a8caf46e429c72b1f186 to your computer and use it in GitHub Desktop.
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 -File -Filter "*.csproj" | ForEach-Object { | |
New-Item -ItemType Directory $_.BaseName -Force; | |
Move-Item -Path $_.FullName -Destination $_.BaseName | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment