From 34a888c02f957beb5556a2ac7613e54b9c5fc3af Mon Sep 17 00:00:00 2001 From: Livar Cunha Date: Mon, 15 Jul 2019 17:22:56 -0700 Subject: [PATCH] Fixing the condition for when we do a build without a suffix (final branding). --- src/redist/targets/BundledTemplates.targets | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/redist/targets/BundledTemplates.targets b/src/redist/targets/BundledTemplates.targets index e698e7a31..fe161fe49 100644 --- a/src/redist/targets/BundledTemplates.targets +++ b/src/redist/targets/BundledTemplates.targets @@ -5,7 +5,8 @@ $(MicrosoftNETCoreAppPackageVersion.IndexOf('-')) $(MicrosoftNETCoreAppPackageVersion) $(MicrosoftNETCoreAppPackageVersion.Substring(0, $(MicrosoftNETCoreAppVersionPreReleaseSeparator))) - $(MicrosoftNETCoreAppMajorMinorPatchVersion)-$(VersionSuffix) + $(MicrosoftNETCoreAppMajorMinorPatchVersion) + $(BundledTemplatesVersion)-$(VersionSuffix)