AvaloniaBehaviors/build.ps1

70 строки
2.9 KiB
PowerShell
Исходник Обычный вид История

2018-12-04 22:20:05 +03:00
[CmdletBinding()]
Param(
[Parameter(Position=0,Mandatory=$false,ValueFromRemainingArguments=$true)]
[string[]]$BuildArguments
)
2021-11-08 22:20:46 +03:00
Write-Output "PowerShell $($PSVersionTable.PSEdition) version $($PSVersionTable.PSVersion)"
2018-12-04 22:20:05 +03:00
2021-11-08 22:20:46 +03:00
Set-StrictMode -Version 2.0; $ErrorActionPreference = "Stop"; $ConfirmPreference = "None"; trap { Write-Error $_ -ErrorAction Continue; exit 1 }
2018-12-04 22:20:05 +03:00
$PSScriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent
###########################################################################
# CONFIGURATION
###########################################################################
$BuildProjectFile = "$PSScriptRoot\build\build\_build.csproj"
2021-11-08 22:20:46 +03:00
$TempDirectory = "$PSScriptRoot\\.nuke\temp"
2018-12-04 22:20:05 +03:00
$DotNetGlobalFile = "$PSScriptRoot\\global.json"
2021-11-08 22:20:46 +03:00
$DotNetInstallUrl = "https://dot.net/v1/dotnet-install.ps1"
2018-12-04 22:20:05 +03:00
$DotNetChannel = "Current"
$env:DOTNET_SKIP_FIRST_TIME_EXPERIENCE = 1
$env:DOTNET_CLI_TELEMETRY_OPTOUT = 1
2021-11-08 22:20:46 +03:00
$env:DOTNET_MULTILEVEL_LOOKUP = 0
2018-12-04 22:20:05 +03:00
###########################################################################
# EXECUTION
###########################################################################
function ExecSafe([scriptblock] $cmd) {
& $cmd
if ($LASTEXITCODE) { exit $LASTEXITCODE }
}
2021-11-08 22:20:46 +03:00
# If dotnet CLI is installed globally and it matches requested version, use for execution
if ($null -ne (Get-Command "dotnet" -ErrorAction SilentlyContinue) -and `
$(dotnet --version) -and $LASTEXITCODE -eq 0) {
2018-12-04 22:20:05 +03:00
$env:DOTNET_EXE = (Get-Command "dotnet").Path
}
else {
# Download install script
$DotNetInstallFile = "$TempDirectory\dotnet-install.ps1"
2021-11-08 22:20:46 +03:00
New-Item -ItemType Directory -Path $TempDirectory -Force | Out-Null
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
2018-12-04 22:20:05 +03:00
(New-Object System.Net.WebClient).DownloadFile($DotNetInstallUrl, $DotNetInstallFile)
2021-11-08 22:20:46 +03:00
# If global.json exists, load expected version
if (Test-Path $DotNetGlobalFile) {
$DotNetGlobal = $(Get-Content $DotNetGlobalFile | Out-String | ConvertFrom-Json)
if ($DotNetGlobal.PSObject.Properties["sdk"] -and $DotNetGlobal.sdk.PSObject.Properties["version"]) {
$DotNetVersion = $DotNetGlobal.sdk.version
}
}
2018-12-04 22:20:05 +03:00
# Install by channel or version
2021-11-08 22:20:46 +03:00
$DotNetDirectory = "$TempDirectory\dotnet-win"
2018-12-04 22:20:05 +03:00
if (!(Test-Path variable:DotNetVersion)) {
2021-11-08 22:20:46 +03:00
ExecSafe { & powershell $DotNetInstallFile -InstallDir $DotNetDirectory -Channel $DotNetChannel -NoPath }
2018-12-04 22:20:05 +03:00
} else {
2021-11-08 22:20:46 +03:00
ExecSafe { & powershell $DotNetInstallFile -InstallDir $DotNetDirectory -Version $DotNetVersion -NoPath }
2018-12-04 22:20:05 +03:00
}
2021-11-08 22:20:46 +03:00
$env:DOTNET_EXE = "$DotNetDirectory\dotnet.exe"
2018-12-04 22:20:05 +03:00
}
Write-Output "Microsoft (R) .NET Core SDK version $(& $env:DOTNET_EXE --version)"
2021-11-08 22:20:46 +03:00
ExecSafe { & $env:DOTNET_EXE build $BuildProjectFile /nodeReuse:false /p:UseSharedCompilation=false -nologo -clp:NoSummary --verbosity quiet }
ExecSafe { & $env:DOTNET_EXE run --project $BuildProjectFile --no-build -- $BuildArguments }