Skip to content

Commit 416d1e8

Browse files
committed
change update-version.ps1 to use $tag on AssemblyInformationalVersion
1 parent 895aa25 commit 416d1e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Scripts/update-version.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ $text = @"
77
using System.Reflection;
88
99
[assembly: AssemblyVersion("$tag")]
10-
[assembly: AssemblyInformationalVersion("$revision")]
10+
[assembly: AssemblyInformationalVersion("$tag")]
1111
"@
1212

1313
$text | Out-File $PSScriptRoot\..\GitVersion.cs -Encoding utf8
1414

1515

1616
$xml = [xml](Get-Content $PSScriptRoot\..\QuickLook.Plugin.Metadata.Base.config)
17-
$xml.Metadata.Version="$revision"
17+
$xml.Metadata.Version = "$revision"
1818
$xml.Save("$PSScriptRoot\..\QuickLook.Plugin.Metadata.config")

0 commit comments

Comments
 (0)