Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Luo <johluo@microsoft.com>2019-07-16 03:17:31 +0300
committerGitHub <noreply@github.com>2019-07-16 03:17:31 +0300
commitd27c0100bc8b9b93eb8102b097c20b40f7de9c49 (patch)
treeb12feed07e726ae3cb16940477e9935a44426efe
parent6a95fcc5e3451091f480aafd1857bd1dd241aa68 (diff)
Resolve Guid inputs correctly (#11865) (#12206)v3.0.0-preview7.19365.7
-rw-r--r--src/Installers/Windows/Wix.targets2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Installers/Windows/Wix.targets b/src/Installers/Windows/Wix.targets
index 8970b74341..f7323ee110 100644
--- a/src/Installers/Windows/Wix.targets
+++ b/src/Installers/Windows/Wix.targets
@@ -21,7 +21,7 @@
</PropertyGroup>
<PropertyGroup>
- <GuidInputs>$(Version);$(Platform);(VersionSuffix)</GuidInputs>
+ <GuidInputs>$(Version);$(Platform);$(VersionSuffix)</GuidInputs>
</PropertyGroup>
<Target Name="GenerateGUIDs" BeforeTargets="BeforeBuild" DependsOnTargets="_GeneratePackageGuids;_GenerateBundleGuids" Condition=" '$(DisableGuidGeneration)' != 'true' " />