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:
authorWilliam Godbe <wigodbe@microsoft.com>2020-05-21 22:30:39 +0300
committerGitHub <noreply@github.com>2020-05-21 22:30:39 +0300
commitfca37bf5eac39d8adb64e4e1fd35df81c34c3d69 (patch)
treece41e1dd8b35617c627b2d99ad7b9205d2c47865
parent26365e78398b60805c1f3f9c602a12b2897b3534 (diff)
[release/2.1] Make .msi GUIDs unique (#21803)
* Make .msi GUIDs unique * Fix GuidInputs
-rw-r--r--src/Installers/Windows/Wix.targets3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Installers/Windows/Wix.targets b/src/Installers/Windows/Wix.targets
index 85eecfa243..3986aeaf33 100644
--- a/src/Installers/Windows/Wix.targets
+++ b/src/Installers/Windows/Wix.targets
@@ -6,8 +6,7 @@
</PropertyGroup>
<PropertyGroup>
- <GuidInputs>$(Version);$(Platform)</GuidInputs>
- <GuidInputs Condition="'$(IsFinalBuild)' != 'true'">$(GuidInputs);$(BuildNumber)</GuidInputs>
+ <GuidInputs>$(Version);$(Platform);$(BuildNumber)</GuidInputs>
</PropertyGroup>
<UsingTask AssemblyFile="$(OutputPath)..\InstallerTasks\InstallerTasks.dll" TaskName="RepoTasks.GenerateGuid" />