30f59dadcb
- Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.19523.3
29 lines
755 B
PowerShell
29 lines
755 B
PowerShell
[CmdletBinding(PositionalBinding=$false)]
|
|
Param(
|
|
[string] $verbosity = "minimal",
|
|
[string] $architecture = "",
|
|
[string] $version = "Latest",
|
|
[string] $runtime = "dotnet",
|
|
[string] $RuntimeSourceFeed = "",
|
|
[string] $RuntimeSourceFeedKey = ""
|
|
)
|
|
|
|
. $PSScriptRoot\tools.ps1
|
|
|
|
$dotnetRoot = Join-Path $RepoRoot ".dotnet"
|
|
|
|
$installdir = $dotnetRoot
|
|
try {
|
|
if ($architecture -and $architecture.Trim() -eq "x86") {
|
|
$installdir = Join-Path $installdir "x86"
|
|
}
|
|
InstallDotNet $installdir $version $architecture $runtime $true -RuntimeSourceFeed $RuntimeSourceFeed -RuntimeSourceFeedKey $RuntimeSourceFeedKey
|
|
}
|
|
catch {
|
|
Write-Host $_
|
|
Write-Host $_.Exception
|
|
Write-Host $_.ScriptStackTrace
|
|
ExitWithExitCode 1
|
|
}
|
|
|
|
ExitWithExitCode 0
|