Skip to content

Commit 93edfa5

Browse files
committed
Update Get-AllCommands.ps1
change debug to release
1 parent 4d2f8d7 commit 93edfa5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/Docs/Get-AllCommands/Get-AllCommands.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -690,9 +690,9 @@ function Get-AllBuildServerCommands {
690690
rm .\Output -Recurse -Force -ErrorAction SilentlyContinue
691691

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

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

0 commit comments

Comments
 (0)