Skip to content

Commit

Permalink
Write out the package version for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
phillip-haydon committed Mar 10, 2024
1 parent e31431b commit 452632c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pack-all.ps1
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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"

}

Expand Down

0 comments on commit 452632c

Please sign in to comment.