From 14a61ccb6adaa928f2c0549fa61f16e2b8c63f68 Mon Sep 17 00:00:00 2001 From: Kristian Hellang Date: Thu, 26 Sep 2024 07:44:27 +0200 Subject: [PATCH] Remove old build script --- Build.ps1 | 71 ------------------------------------------------------- 1 file changed, 71 deletions(-) delete mode 100644 Build.ps1 diff --git a/Build.ps1 b/Build.ps1 deleted file mode 100644 index cb1614a9..00000000 --- a/Build.ps1 +++ /dev/null @@ -1,71 +0,0 @@ -function Install-Dotnet -{ - & where.exe dotnet 2>&1 | Out-Null - - if(($LASTEXITCODE -ne 0) -Or ((Test-Path Env:\APPVEYOR) -eq $true)) - { - Write-Host "Dotnet CLI not found - downloading latest version" - - # Prepare the dotnet CLI folder - $dotnetInstallDir="$(Convert-Path "$PSScriptRoot")\.dotnet" - if (!(Test-Path $dotnetInstallDir)) - { - mkdir $dotnetInstallDir | Out-Null - } - # Download the dotnet CLI install script - if (!(Test-Path ./dotnet/dotnet-install.ps1)) - { - Write-Host "Downloading dotnet CLI install script" - Invoke-WebRequest "https://dot.net/v1/dotnet-install.ps1" -OutFile "./.dotnet/dotnet-install.ps1" - } - - # Skip all the extra work - $env:DOTNET_CLI_TELEMETRY_OPTOUT = "1" - $env:DOTNET_SKIP_FIRST_TIME_EXPERIENCE = "true" - - # Run the dotnet CLI install - ./.dotnet/dotnet-install.ps1 -Version "3.1.416" - ./.dotnet/dotnet-install.ps1 -Version "6.0.101" - } -} - -function Restore-Packages -{ - param([string] $DirectoryName) - & dotnet restore -v minimal ("""" + $DirectoryName + """") - if($LASTEXITCODE -ne 0) { exit 1 } -} - -function Test-Project -{ - param([string] $ProjectPath) - & dotnet test -v minimal -c Release ("""" + $ProjectPath + """") - if($LASTEXITCODE -ne 0) { exit 1 } -} - -function Pack-Project -{ - param([string] $ProjectPath) - & dotnet pack -v minimal -c Release --output packages ("""" + $ProjectPath + """") - if($LASTEXITCODE -ne 0) { exit 1 } -} - -######################## -# THE BUILD! -######################## - -Push-Location $PSScriptRoot - -# Install Dotnet CLI -Install-Dotnet - -# Package restore -Get-ChildItem -Path . -Filter *.csproj -Recurse | ForEach-Object { Restore-Packages $_.DirectoryName } - -# Tests -Get-ChildItem -Path .\test -Filter *.csproj -Recurse | ForEach-Object { Test-Project $_.FullName } - -# Pack -Get-ChildItem -Path .\src -Filter *.csproj -Recurse | ForEach-Object { Pack-Project $_.FullName } - -Pop-Location