File tree Expand file tree Collapse file tree 5 files changed +11
-14
lines changed
setup-powershellget/Setup Expand file tree Collapse file tree 5 files changed +11
-14
lines changed Original file line number Diff line number Diff line change @@ -20,9 +20,11 @@ Param(
20
20
$error.clear ()
21
21
try {
22
22
if ($Install.IsPresent ) {
23
- Write-Output @" Installing Azure Modules from PowerShell Gallery.
24
- This may take some time...
23
+ Write-Output @"
25
24
25
+ Finalizing installation of Azure PowerShell.
26
+ Installing Azure Modules from PowerShell Gallery.
27
+ This may take some time...
26
28
"@
27
29
Get-PackageProvider - Name NuGet - ForceBootstrap
28
30
Install-Module AzureRM.Installer
Original file line number Diff line number Diff line change 15
15
$scriptFolder = Split-Path - Path $MyInvocation.MyCommand.Definition - Parent
16
16
. ($scriptFolder + ' .\SetupEnv.ps1' )
17
17
18
- msbuild " $env: AzurePSRoot \build.proj" / t:BuildDebug
18
+ msbuild " $env: AzurePSRoot \build.proj" / t:Build
Original file line number Diff line number Diff line change @@ -50,13 +50,8 @@ if ($wixInstallRoot -eq $null){
50
50
# and we just register both 3.8 & 3.5 to simplify the script
51
51
$env: path = $env: path + " ;$wixInstallRoot "
52
52
53
- # Build the cmdlets in debug mode
54
- msbuild " $env: AzurePSRoot \build.proj" / t:" BuildDebug "
53
+ # Build the cmdlets and installer in debug mode
54
+ msbuild " $env: AzurePSRoot \build.proj" / t:Build
55
55
56
- # Regenerate the installer files
57
- & " $env: AzurePSRoot \tools\Installer\generate.ps1" ' Debug'
58
-
59
- # Build the installer
60
- msbuild " $env: AzurePSRoot \build.proj" / t:" BuildSetupDebug"
61
-
62
- Write-Host " MSI file path: $env: AzurePSRoot \setup\build\Debug\AzurePowerShell.msi"
56
+ Write-Host " MSI file path: $env: AzurePSRoot \setup\build\Debug\AzurePowerShell.msi"
57
+ Write-Host " MSI for PowerShell Gallery: $env: AzurePSRoot \setup-powershellget\build\Debug\AzurePowerShellGet.msi"
Original file line number Diff line number Diff line change @@ -16,4 +16,4 @@ $scriptFolder = Split-Path -Path $MyInvocation.MyCommand.Definition -Parent
16
16
. ($scriptFolder + ' .\SetupTestEnv.ps1' )
17
17
18
18
$env: AZURE_TEST_MODE = " Playback"
19
- msbuild.exe $env: AzurePSRoot \build.proj / t:" Test;BuildSetupDebug "
19
+ msbuild.exe $env: AzurePSRoot \build.proj / t:Test
Original file line number Diff line number Diff line change 15
15
$scriptFolder = Split-Path - Path $MyInvocation.MyCommand.Definition - Parent
16
16
. ($scriptFolder + ' .\SetupTestEnv.ps1' )
17
17
18
- msbuild.exe $env: AzurePSRoot \build.proj / t:" BuildDebug ;BeforeRunTests;MockedScenarioTests"
18
+ msbuild.exe $env: AzurePSRoot \build.proj / t:" Build ;BeforeRunTests;MockedScenarioTests"
You can’t perform that action at this time.
0 commit comments