Skip to content

Commit 0933116

Browse files
committed
Always use 4-tuple versions.
1 parent 79744f6 commit 0933116

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build-tools/scripts/AssemblyInfo.g.cs.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ using System.Reflection;
1414
[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft Corporation")]
1515
[assembly: System.Reflection.AssemblyConfigurationAttribute("@CONFIGURATION@")]
1616
[assembly: System.Reflection.AssemblyCopyrightAttribute("Microsoft Corporation")]
17-
[assembly: System.Reflection.AssemblyFileVersionAttribute("@VERSION@.0")]
17+
[assembly: System.Reflection.AssemblyFileVersionAttribute("@VERSION@")]
1818
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("@INFORMATIONALVERSION@")]
1919
[assembly: System.Reflection.AssemblyProductAttribute("@PRODUCT@")]
2020
[assembly: System.Reflection.AssemblyTitleAttribute("@TITLE@")]

build-tools/scripts/VersionInfo.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
DependsOnTargets="GitVersion"
1717
Condition="!Exists ('$(MSBuildThisFileDirectory)..\..\bin\Build$(Configuration)\Version.props')">
1818
<ItemGroup>
19-
<Replacements Include="@VERSION@" Replacement="$(GitSemVerMajor).$(GitSemVerMinor).$(GitSemVerPatch)"/>
19+
<Replacements Include="@VERSION@" Replacement="$(GitSemVerMajor).$(GitSemVerMinor).$(GitSemVerPatch).0"/>
2020
<Replacements Include="@COMMIT@" Replacement="$(GitCommit)"/>
2121
<Replacements Include="@BRANCH@" Replacement="$(GitBranch)"/>
2222
</ItemGroup>

0 commit comments

Comments
 (0)