| |
| |
|
|
| function Append-Path |
| { |
| param |
| ( |
| $path |
| ) |
| $machinePathString = [System.Environment]::GetEnvironmentVariable('path',[System.EnvironmentVariableTarget]::Machine) |
| $machinePath = $machinePathString -split ';' |
|
|
| if($machinePath -inotcontains $path) |
| { |
| $newPath = "$machinePathString;$path" |
| Write-Verbose "Adding $path to path..." -Verbose |
| [System.Environment]::SetEnvironmentVariable('path',$newPath,[System.EnvironmentVariableTarget]::Machine) |
| Write-Verbose "Added $path to path." -Verbose |
| } |
| else |
| { |
| Write-Verbose "$path already in path." -Verbose |
| } |
| } |
|
|
| |
| |
| function Install-Wix |
| { |
| param($arm64 = $false) |
|
|
| $targetRoot = $arm64 ? "${env:ProgramFiles(x86)}\Arm Support WiX Toolset xcopy" : "${env:ProgramFiles(x86)}\WiX Toolset xcopy" |
| |
| if(Test-Path $targetRoot) { |
| Remove-Item $targetRoot -Recurse -Force |
| } |
| $binPath = Join-Path -Path $targetRoot -ChildPath 'bin' |
|
|
| $psresourceGet = Get-Module -ListAvailable -Name 'Microsoft.PowerShell.PSResourceGet' -ErrorAction SilentlyContinue |
|
|
| if (-not $psresourceGet) { |
| Install-Module -Name 'Microsoft.PowerShell.PSResourceGet' -Force -AllowClobber -Scope CurrentUser |
| } |
|
|
| $respository = Get-PSResourceRepository -Name 'dotnet-eng' -ErrorAction SilentlyContinue |
|
|
| if (-not $respository) { |
| Write-Verbose -Verbose "Registering dotnet-eng repository..." |
| Register-PSResourceRepository -Name 'dotnet-eng' -Uri 'https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json' -Trusted |
| } |
|
|
| |
|
|
| if (-not (Test-Path $binPath)) { |
| $null = New-Item -ItemType Directory -Path $binPath |
| Write-Verbose -Verbose "Created bin directory for WIX at $binPath" |
| } |
|
|
| try { |
| Save-PSResource -Name 'Microsoft.Signed.Wix' -Repository 'dotnet-eng' -path "$binPath/" -Prerelease |
| } |
| finally { |
| Write-Verbose -Verbose "Unregistering dotnet-eng repository..." |
| Unregister-PSResourceRepository -Name 'dotnet-eng' |
| } |
|
|
| $docExpandPath = Join-Path -Path "$binPath\Microsoft.Signed.Wix\3.14.1\tools\" -ChildPath 'doc' |
| $sdkExpandPath = Join-Path -Path "$binPath\Microsoft.Signed.Wix\3.14.1\tools\" -ChildPath 'sdk' |
| $x86ExpandPath = Join-Path -Path "$binPath\Microsoft.Signed.Wix\3.14.1\tools\" -ChildPath 'x86' |
|
|
| $docTargetPath = Join-Path -Path $targetRoot -ChildPath 'doc' |
|
|
| if (-not (Test-Path $docTargetPath)) { |
| $null = New-Item -ItemType Directory -Path $docTargetPath |
| Write-Verbose -Verbose "Created doc directory for WIX at $docTargetPath" |
| } |
|
|
| $sdkTargetPath = Join-Path -Path $targetRoot -ChildPath 'sdk' |
|
|
| if (-not (Test-Path $sdkTargetPath)) { |
| $null = New-Item -ItemType Directory -Path $sdkTargetPath |
| Write-Verbose -Verbose "Created sdk directory for WIX at $sdkTargetPath" |
| } |
|
|
| $binTargetPath = Join-Path -Path $targetRoot -ChildPath 'bin' |
|
|
| if (-not (Test-Path $binTargetPath)) { |
| $null = New-Item -ItemType Directory -Path $binTargetPath |
| Write-Verbose -Verbose "Created bin directory for WIX at $binTargetPath" |
| } |
|
|
| $x86TargetPath = Join-Path -Path $binPath -ChildPath 'x86' |
|
|
| if (-not (Test-Path $x86TargetPath)) { |
| $null = New-Item -ItemType Directory -Path $x86TargetPath |
| Write-Verbose -Verbose "Created x86 directory for WIX at $x86TargetPath" |
| } |
|
|
| Write-Verbose "Fixing folder structure ..." -Verbose |
| Copy-Item -Path $docExpandPath -Destination $docTargetPath -Force |
| Copy-Item -Path $sdkExpandPath -Destination $sdkTargetPath -Force |
| Copy-Item -Path "$binPath\Microsoft.Signed.Wix\3.14.1\tools\*" -Destination $binTargetPath -Force |
| Copy-Item -Path $x86ExpandPath -Destination $x86TargetPath -Force -Recurse -Verbose |
| Copy-Item -Path "$x86ExpandPath\burn.exe" -Destination "$x86TargetPath\burn.exe" -Force -Verbose |
|
|
| Append-Path -path $binPath |
| Write-Verbose "Done installing WIX!" |
| } |
|
|