Skip to content

Commit fac3fd9

Browse files
Copilotscott-wi
andcommitted
Add default version 0.0.999 for local builds
Addresses PR review comment from scott-wi to make local development easier by providing a default version when -Version parameter is not specified. CI/CD workflows will continue to pass explicit versions. Co-authored-by: scott-wi <7329487+scott-wi@users.noreply.github.com>
1 parent c16c747 commit fac3fd9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
.PARAMETER PackageOutputPath
1616
Output directory for NuGet packages. Default: ./artifacts/packages
1717
.PARAMETER Version
18-
Version number for NuGet packages. If not specified, uses version from .csproj files
18+
Version number for NuGet packages. Default: 0.0.999 for local builds
1919
.PARAMETER VerboseOutput
2020
Enable verbose output
2121
.PARAMETER EnableCodeCoverage
@@ -57,7 +57,7 @@ param(
5757

5858
[string]$PackageOutputPath,
5959

60-
[string]$Version,
60+
[string]$Version = "0.0.999",
6161

6262
[switch]$VerboseOutput,
6363

0 commit comments

Comments
 (0)