aboutsummaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
Diffstat (limited to 'src/api')
-rw-r--r--src/api/wix/WixToolset.Data/Symbols/WixBundleSymbol.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/api/wix/WixToolset.Data/Symbols/WixBundleSymbol.cs b/src/api/wix/WixToolset.Data/Symbols/WixBundleSymbol.cs
index de5646d3..72192c15 100644
--- a/src/api/wix/WixToolset.Data/Symbols/WixBundleSymbol.cs
+++ b/src/api/wix/WixToolset.Data/Symbols/WixBundleSymbol.cs
@@ -183,15 +183,15 @@ namespace WixToolset.Data.Symbols
183 set => this.Set((int)WixBundleSymbolFields.LogExtension, value); 183 set => this.Set((int)WixBundleSymbolFields.LogExtension, value);
184 } 184 }
185 185
186 public string IconSourceFile 186 public IntermediateFieldPathValue IconSourceFile
187 { 187 {
188 get => (string)this.Fields[(int)WixBundleSymbolFields.IconSourceFile]; 188 get => this.Fields[(int)WixBundleSymbolFields.IconSourceFile].AsPath();
189 set => this.Set((int)WixBundleSymbolFields.IconSourceFile, value); 189 set => this.Set((int)WixBundleSymbolFields.IconSourceFile, value);
190 } 190 }
191 191
192 public string SplashScreenSourceFile 192 public IntermediateFieldPathValue SplashScreenSourceFile
193 { 193 {
194 get => (string)this.Fields[(int)WixBundleSymbolFields.SplashScreenSourceFile]; 194 get => this.Fields[(int)WixBundleSymbolFields.SplashScreenSourceFile].AsPath();
195 set => this.Set((int)WixBundleSymbolFields.SplashScreenSourceFile, value); 195 set => this.Set((int)WixBundleSymbolFields.SplashScreenSourceFile, value);
196 } 196 }
197 197