From 5aad836bc2588e97514bdd07ffb757a92851a6de Mon Sep 17 00:00:00 2001 From: Gaurav Khanna Date: Thu, 1 Jun 2017 13:03:09 -0700 Subject: [PATCH] Trim leading zeros from AppX package version (dotnet/core-setup#2587) * Trim leading zeros from AppX package version * Use properties for Build and Revision version for AppX. Commit migrated from https://github.com/dotnet/core-setup/commit/f76a4f863f2f70496033e35a8c45a50a8a882c1c --- .../Microsoft.NET.CoreRuntime/Microsoft.NET.CoreRuntime.depproj | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/installer/pkg/projects/Microsoft.NET.CoreRuntime/Microsoft.NET.CoreRuntime.depproj b/src/installer/pkg/projects/Microsoft.NET.CoreRuntime/Microsoft.NET.CoreRuntime.depproj index cb4e453..e5192ee 100644 --- a/src/installer/pkg/projects/Microsoft.NET.CoreRuntime/Microsoft.NET.CoreRuntime.depproj +++ b/src/installer/pkg/projects/Microsoft.NET.CoreRuntime/Microsoft.NET.CoreRuntime.depproj @@ -14,6 +14,9 @@ Microsoft.NET.CoreRuntime.$(MajorVersion).$(MinorVersion) Microsoft.NET.CoreRuntime.$(MajorVersion).$(MinorVersion) + $([System.Int32]::Parse($(BuildNumberMajor))) + $([System.Int32]::Parse($(BuildNumberMinor))) + $(IntermediateOutputPath)$(AppxIdentityName) $(IntermediateOutputPath)$(AppxIdentityName) @@ -61,7 +64,7 @@ Inputs="$(AppxManifestTemplate)" Outputs="$(AppxManifest)"> -- 2.7.4