diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-08-07 19:02:26 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-08-09 10:57:40 -0600 |
commit | f407e08ed9695a59e5f41cfc7a41cd3c8138817a (patch) | |
tree | d9d66d6e1e4b9610ac7cc7130d92128f73e6f925 /src/wixext | |
parent | d96ba4263bf243dedb62e9090072fba53bfe1316 (diff) | |
download | wix-f407e08ed9695a59e5f41cfc7a41cd3c8138817a.tar.gz wix-f407e08ed9695a59e5f41cfc7a41cd3c8138817a.tar.bz2 wix-f407e08ed9695a59e5f41cfc7a41cd3c8138817a.zip |
WIXFEAT:4863 Update to latest thmutil.
Diffstat (limited to 'src/wixext')
-rw-r--r-- | src/wixext/BalCompiler.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wixext/BalCompiler.cs b/src/wixext/BalCompiler.cs index 294cf45c..c836adbe 100644 --- a/src/wixext/BalCompiler.cs +++ b/src/wixext/BalCompiler.cs | |||
@@ -491,7 +491,7 @@ namespace WixToolset.Bal | |||
491 | section.AddSymbol(new WixBundleVariableSymbol(sourceLineNumbers, new Identifier(AccessModifier.Public, "LaunchTarget")) | 491 | section.AddSymbol(new WixBundleVariableSymbol(sourceLineNumbers, new Identifier(AccessModifier.Public, "LaunchTarget")) |
492 | { | 492 | { |
493 | Value = launchTarget, | 493 | Value = launchTarget, |
494 | Type = "string", | 494 | Type = WixBundleVariableType.Formatted, |
495 | }); | 495 | }); |
496 | } | 496 | } |
497 | 497 | ||
@@ -500,7 +500,7 @@ namespace WixToolset.Bal | |||
500 | section.AddSymbol(new WixBundleVariableSymbol(sourceLineNumbers, new Identifier(AccessModifier.Public, "LaunchTargetElevatedId")) | 500 | section.AddSymbol(new WixBundleVariableSymbol(sourceLineNumbers, new Identifier(AccessModifier.Public, "LaunchTargetElevatedId")) |
501 | { | 501 | { |
502 | Value = launchTargetElevatedId, | 502 | Value = launchTargetElevatedId, |
503 | Type = "string", | 503 | Type = WixBundleVariableType.Formatted, |
504 | }); | 504 | }); |
505 | } | 505 | } |
506 | 506 | ||
@@ -509,7 +509,7 @@ namespace WixToolset.Bal | |||
509 | section.AddSymbol(new WixBundleVariableSymbol(sourceLineNumbers, new Identifier(AccessModifier.Public, "LaunchArguments")) | 509 | section.AddSymbol(new WixBundleVariableSymbol(sourceLineNumbers, new Identifier(AccessModifier.Public, "LaunchArguments")) |
510 | { | 510 | { |
511 | Value = launchArguments, | 511 | Value = launchArguments, |
512 | Type = "string", | 512 | Type = WixBundleVariableType.Formatted, |
513 | }); | 513 | }); |
514 | } | 514 | } |
515 | 515 | ||
@@ -518,7 +518,7 @@ namespace WixToolset.Bal | |||
518 | section.AddSymbol(new WixBundleVariableSymbol(sourceLineNumbers, new Identifier(AccessModifier.Public, "LaunchHidden")) | 518 | section.AddSymbol(new WixBundleVariableSymbol(sourceLineNumbers, new Identifier(AccessModifier.Public, "LaunchHidden")) |
519 | { | 519 | { |
520 | Value = "yes", | 520 | Value = "yes", |
521 | Type = "string", | 521 | Type = WixBundleVariableType.Formatted, |
522 | }); | 522 | }); |
523 | } | 523 | } |
524 | 524 | ||
@@ -528,7 +528,7 @@ namespace WixToolset.Bal | |||
528 | section.AddSymbol(new WixBundleVariableSymbol(sourceLineNumbers, new Identifier(AccessModifier.Public, "LaunchWorkingFolder")) | 528 | section.AddSymbol(new WixBundleVariableSymbol(sourceLineNumbers, new Identifier(AccessModifier.Public, "LaunchWorkingFolder")) |
529 | { | 529 | { |
530 | Value = launchWorkingDir, | 530 | Value = launchWorkingDir, |
531 | Type = "string", | 531 | Type = WixBundleVariableType.Formatted, |
532 | }); | 532 | }); |
533 | } | 533 | } |
534 | 534 | ||