From 319b85c257369fe502426b58433c42c4208e2231 Mon Sep 17 00:00:00 2001 From: "Frank R. Haugen" Date: Tue, 8 Aug 2023 22:00:18 +0200 Subject: [PATCH] Add version suffix to build output message This updates the output message during solution building to include the version suffix. The version suffix provides additional information like whether it's a beta or release version. This change enhances the build logging process by including more specific version details. --- src/build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build.ps1 b/src/build.ps1 index bb7ffdbe..8af2b2fc 100644 --- a/src/build.ps1 +++ b/src/build.ps1 @@ -39,7 +39,7 @@ if (Test-Path $publishDir) { Remove-Item "$publishDir/*" -Recurse } if (Test-Path $packageDir) { Remove-Item "$packageDir/*" -Recurse } # Build the solution in the specified mode -Write-Host "Building solution in $configuration mode with version $version..." -ForegroundColor DarkCyan +Write-Host "Building solution in $configuration mode with version $version$versionSuffix..." -ForegroundColor DarkCyan dotnet build $tempSln --configuration $configuration /p:Version=$version | Out-Null Write-Host "Build in $configuration mode completed." -ForegroundColor Green