Skip to content

Commit

Permalink
Update Get-AllCommands.ps1
Browse files Browse the repository at this point in the history
change debug to release
  • Loading branch information
devigned committed Oct 19, 2015
1 parent 4d2f8d7 commit 93edfa5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/Docs/Get-AllCommands/Get-AllCommands.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -690,9 +690,9 @@ function Get-AllBuildServerCommands {
rm .\Output -Recurse -Force -ErrorAction SilentlyContinue

#Comment these lines to selectivly build the output for either Service Management or Resource Manager
Get-AllBuildServerCommands -OutputPath ".\Output" -ManifestFullName "..\..\..\src\Package\Debug\ServiceManagement\Azure\Azure.psd1"
Get-AllBuildServerCommands -OutputPath ".\Output" -ManifestFullName "..\..\..\src\Package\Release\ServiceManagement\Azure\Azure.psd1"
Get-AllBuildServerCommands -OutputPath ".\Output" -ManifestFullName "..\..\AzureRM\AzureRM.psd1"

$modules = (Get-ChildItem "..\..\..\src\Package\Debug\ResourceManager" -Recurse -Include "*.psd1" -Exclude "*dll-help.psd1", "AzureResourceManager.psd1") | sort -Unique -Property Name
$modules = (Get-ChildItem "..\..\..\src\Package\Release\ResourceManager" -Recurse -Include "*.psd1" -Exclude "*dll-help.psd1", "AzureResourceManager.psd1") | sort -Unique -Property Name
$modules | Foreach { Get-AllBuildServerCommands -OutputPath ".\Output" -ManifestFullName $_.FullName }

0 comments on commit 93edfa5

Please sign in to comment.