diff --git a/src/DtronixCommon/tag_release.ps1 b/src/DtronixCommon/tag_release.ps1 index a613ccc..588bbaf 100644 --- a/src/DtronixCommon/tag_release.ps1 +++ b/src/DtronixCommon/tag_release.ps1 @@ -11,7 +11,7 @@ if ($ChangedFiles -gt 0) $projectFile = Get-ChildItem -filter "*.csproj" $version = Select-Xml -Path $projectFile -XPath "Project/PropertyGroup/Version" | Select-Object -ExpandProperty Node -$tag = $projectFile.BaseName + "-v" + $version.InnerText +$tag = "v" + $version.InnerText $confirmation = Read-Host "Tag current commit with '$tag' (y/n):" if ($confirmation -eq 'y') {