diff options
Diffstat (limited to 'src/wixext/BalCompiler.cs')
-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 | ||