aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-02-27 16:28:42 -0600
committerSean Hall <r.sean.hall@gmail.com>2021-03-02 15:50:47 -0600
commited20ef6dc8caa5d585c1a715ff4ba577687bf291 (patch)
treeac457c8d3fe13578b495504bfd4c458897ce3547 /src/WixToolset.Core.WindowsInstaller
parent263c62069df0f154001915cca00d6d4926f2fbb5 (diff)
downloadwix-ed20ef6dc8caa5d585c1a715ff4ba577687bf291.tar.gz
wix-ed20ef6dc8caa5d585c1a715ff4ba577687bf291.tar.bz2
wix-ed20ef6dc8caa5d585c1a715ff4ba577687bf291.zip
Add failing tests for package description and packages sharing payloads
In Core projects, treat warnings as errors.
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/SequenceActionsCommand.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/SequenceActionsCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/SequenceActionsCommand.cs
index 056b129b..7d75d74c 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/SequenceActionsCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/SequenceActionsCommand.cs
@@ -569,6 +569,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
569 /// </summary> 569 /// </summary>
570 /// <param name="actionSymbol">The action symbol to be sequenced.</param> 570 /// <param name="actionSymbol">The action symbol to be sequenced.</param>
571 /// <param name="requiredActionSymbols">Collection of actions which must be included.</param> 571 /// <param name="requiredActionSymbols">Collection of actions which must be included.</param>
572 /// <param name="firstReference">A dictionary used for detecting cyclic references among action symbols.</param>
572 private void SequenceActionSymbol(WixActionSymbol actionSymbol, Dictionary<string, WixActionSymbol> requiredActionSymbols, Dictionary<WixActionSymbol, WixActionSymbol> firstReference) 573 private void SequenceActionSymbol(WixActionSymbol actionSymbol, Dictionary<string, WixActionSymbol> requiredActionSymbols, Dictionary<WixActionSymbol, WixActionSymbol> firstReference)
573 { 574 {
574 var after = false; 575 var after = false;