From 452632cf98b8b7b257e8e7b401a1d29a3593f813 Mon Sep 17 00:00:00 2001 From: phillip-haydon Date: Mon, 19 Feb 2024 10:41:35 +1300 Subject: [PATCH] Write out the package version for clarity --- pack-all.ps1 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pack-all.ps1 b/pack-all.ps1 index 63013143..badf0ca0 100644 --- a/pack-all.ps1 +++ b/pack-all.ps1 @@ -1,10 +1,10 @@ $root = Get-Location $build_dir = "$root\build" -$assembly_version = "9.0.0" -$version = "9.0.0" +$assembly_version = "9.0.5" +$version = "9.0.5" $is_pre_release = $true -$pre_release_counter = 1 +$pre_release_counter = 9 function CleanAndBuild { Remove-Item -Force -Recurse $build_dir -ErrorAction SilentlyContinue | Out-Null @@ -37,6 +37,7 @@ function PackAll { # count the number of packages produced and write out $packageCount = (Get-ChildItem -Path $build_dir -Filter *.nupkg).Count Write-Output "Created $packageCount packages" + Write-Output "Version: $package_version" }