We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c94c24 commit b645933Copy full SHA for b645933
build/build-cmdlet.ps1
@@ -41,9 +41,9 @@ $config = gc "${cmdletName}.psd1" -Raw
41
$config = $config.Replace("ModuleVersion = '0.1'", "ModuleVersion = '${Env:GITVERSION_MajorMinorPatch}'");
42
43
if(-not [string]::IsNullOrWhiteSpace($Env:GITVERSION_NuGetPreReleaseTag)) {
44
- $config = $config.Replace("# Prerelease = ''", "Prerelease = '-${Env:GITVERSION_NuGetPreReleaseTag}'");
+ $config = $config.Replace("# Prerelease = ''", "Prerelease = '${Env:GITVERSION_NuGetPreReleaseTag}'");
45
}
46
47
$config | sc "${cmdletName}.psd1"
48
49
-Pop-Location
+Pop-Location
0 commit comments