Skip to content

Instantly share code, notes, and snippets.

@jincod
Created October 5, 2017 06:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jincod/ce2f70b2ed6f82e7c93a7bf52aad879a to your computer and use it in GitHub Desktop.
Save jincod/ce2f70b2ed6f82e7c93a7bf52aad879a to your computer and use it in GitHub Desktop.
Multiple adding csproj to sln using dotnet cli
gci . -Filter *.csproj -Recurse | ? { $_.FullName -notmatch 'OldS'} | select-Object -expandproperty FullName | % {dotnet sln add $_}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment