Skip to content

Commit

Permalink
Add version suffix to build output message
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
frankhaugen committed Aug 8, 2023
1 parent 3cd35a0 commit 319b85c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 319b85c

Please sign in to comment.