aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.WixBA/Model.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.WixBA/Model.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.WixBA/Model.cs b/src/WixToolset.WixBA/Model.cs
index 8c5f7082..a557fa4e 100644
--- a/src/WixToolset.WixBA/Model.cs
+++ b/src/WixToolset.WixBA/Model.cs
@@ -60,7 +60,7 @@ namespace WixToolset.WixBA
60 /// <summary> 60 /// <summary>
61 /// Get the version of the install. 61 /// Get the version of the install.
62 /// </summary> 62 /// </summary>
63 public Version Version { get; private set; } 63 public string Version { get; private set; }
64 64
65 /// <summary> 65 /// <summary>
66 /// Get or set the path where the bundle is installed. 66 /// Get or set the path where the bundle is installed.
@@ -79,7 +79,7 @@ namespace WixToolset.WixBA
79 79
80 set 80 set
81 { 81 {
82 this.Engine.SetVariable(BurnBundleInstallDirectoryVariable, value, false); 82 this.Engine.SetVariableString(BurnBundleInstallDirectoryVariable, value, false);
83 } 83 }
84 } 84 }
85 85
@@ -100,7 +100,7 @@ namespace WixToolset.WixBA
100 100
101 set 101 set
102 { 102 {
103 this.Engine.SetVariable(BurnBundleLayoutDirectoryVariable, value, false); 103 this.Engine.SetVariableString(BurnBundleLayoutDirectoryVariable, value, false);
104 } 104 }
105 } 105 }
106 106