aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Bind/SequenceActionsCommand.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2018-12-26 17:14:40 -0800
committerRob Mensching <rob@firegiant.com>2018-12-26 17:14:40 -0800
commit7d1e5deed7304612eccfa9cb57b0decf083a868c (patch)
tree8b0bee8e4ad15eb724718b3b57d170d780bfc5a2 /src/WixToolset.Core.WindowsInstaller/Bind/SequenceActionsCommand.cs
parentc620681374ad7fbf38ebeb53255bdf140fa90c28 (diff)
downloadwix-7d1e5deed7304612eccfa9cb57b0decf083a868c.tar.gz
wix-7d1e5deed7304612eccfa9cb57b0decf083a868c.tar.bz2
wix-7d1e5deed7304612eccfa9cb57b0decf083a868c.zip
Remove lingering uses of .resx from WixToolset.Core
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Bind/SequenceActionsCommand.cs')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/SequenceActionsCommand.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/SequenceActionsCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/SequenceActionsCommand.cs
index 34049dfd..0a356ba9 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/SequenceActionsCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/SequenceActionsCommand.cs
@@ -88,7 +88,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
88 } 88 }
89 else // not a supported unscheduled action. 89 else // not a supported unscheduled action.
90 { 90 {
91 throw new InvalidOperationException(WixStrings.EXP_FoundActionRowWithNoSequenceBeforeOrAfterColumnSet); 91 throw new InvalidOperationException("Found an ActionRow with no Sequence, Before, or After column set.");
92 } 92 }
93 } 93 }
94 94
@@ -575,7 +575,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
575 } 575 }
576 else if (actionRow.Before == null) 576 else if (actionRow.Before == null)
577 { 577 {
578 throw new InvalidOperationException(WixStrings.EXP_FoundActionRowWithNoSequenceBeforeOrAfterColumnSet); 578 throw new InvalidOperationException("Found an ActionRow with no Sequence, Before, or After column set.");
579 } 579 }
580 580
581 var parentActionName = (after ? actionRow.After : actionRow.Before); 581 var parentActionName = (after ? actionRow.After : actionRow.Before);
@@ -593,7 +593,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
593 } 593 }
594 else 594 else
595 { 595 {
596 throw new InvalidOperationException(String.Format(CultureInfo.CurrentUICulture, WixStrings.EXP_FoundActionRowWinNonExistentAction, (after ? "After" : "Before"), parentActionName)); 596 throw new InvalidOperationException(String.Format(CultureInfo.CurrentUICulture, "Found an ActionRow with a non-existent {0} action: {1}.", (after ? "After" : "Before"), parentActionName));
597 } 597 }
598 } 598 }
599 else if (actionRow == parentActionRow || this.ContainsChildActionRow(actionRow, parentActionRow)) // cycle detected 599 else if (actionRow == parentActionRow || this.ContainsChildActionRow(actionRow, parentActionRow)) // cycle detected