Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Created April 27, 2016 13:23
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 justinyoo/5488410c3fc3a8a49b43797989da07f4 to your computer and use it in GitHub Desktop.
Save justinyoo/5488410c3fc3a8a49b43797989da07f4 to your computer and use it in GitHub Desktop.
Azure DevOps Series
$projects = Get-ChildItem .\src, .\test | ?{$_.PsIsContainer} | ?{ Test-Path (Join-Path $_.FullName "project.json") }
foreach($project in $projects)
{
dnu build $project.FullName
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment