aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Compiler.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-10-07 13:21:29 -0700
committerRob Mensching <rob@firegiant.com>2019-10-07 21:44:46 -0700
commitd3b12de2f22eb552e073f0c949833a7ef4d4f13c (patch)
tree87e6148d06a07ea57ba20f4fa2f245a4f5a5546c /src/WixToolset.Core/Compiler.cs
parent860676fa5b40a1904478151e9b4934c004e7db63 (diff)
downloadwix-d3b12de2f22eb552e073f0c949833a7ef4d4f13c.tar.gz
wix-d3b12de2f22eb552e073f0c949833a7ef4d4f13c.tar.bz2
wix-d3b12de2f22eb552e073f0c949833a7ef4d4f13c.zip
Fix AppSearch related building
Diffstat (limited to 'src/WixToolset.Core/Compiler.cs')
-rw-r--r--src/WixToolset.Core/Compiler.cs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs
index 3ee87872..c4bbf86d 100644
--- a/src/WixToolset.Core/Compiler.cs
+++ b/src/WixToolset.Core/Compiler.cs
@@ -322,8 +322,9 @@ namespace WixToolset.Core
322 this.Core.Write(ErrorMessages.SearchPropertyNotUppercase(sourceLineNumbers, "Property", "Id", propertyId.Id)); 322 this.Core.Write(ErrorMessages.SearchPropertyNotUppercase(sourceLineNumbers, "Property", "Id", propertyId.Id));
323 } 323 }
324 324
325 var tuple = new AppSearchTuple(sourceLineNumbers, propertyId) 325 var tuple = new AppSearchTuple(sourceLineNumbers, new Identifier(propertyId.Access, propertyId.Id, signature))
326 { 326 {
327 PropertyRef = propertyId.Id,
327 SignatureRef = signature 328 SignatureRef = signature
328 }; 329 };
329 330
@@ -2905,6 +2906,7 @@ namespace WixToolset.Core
2905 { 2906 {
2906 var tuple = new CompLocatorTuple(sourceLineNumbers, id) 2907 var tuple = new CompLocatorTuple(sourceLineNumbers, id)
2907 { 2908 {
2909 SignatureRef = id.Id,
2908 ComponentId = componentId, 2910 ComponentId = componentId,
2909 Type = type, 2911 Type = type,
2910 }; 2912 };
@@ -4482,7 +4484,7 @@ namespace WixToolset.Core
4482 signature = id.Id; 4484 signature = id.Id;
4483 } 4485 }
4484 4486
4485 var tuple = new DrLocatorTuple(sourceLineNumbers) 4487 var tuple = new DrLocatorTuple(sourceLineNumbers, new Identifier(access, rowId, parentSignature, path))
4486 { 4488 {
4487 SignatureRef = rowId, 4489 SignatureRef = rowId,
4488 Parent = parentSignature, 4490 Parent = parentSignature,
@@ -6793,6 +6795,7 @@ namespace WixToolset.Core
6793 { 6795 {
6794 var tuple = new IniLocatorTuple(sourceLineNumbers, id) 6796 var tuple = new IniLocatorTuple(sourceLineNumbers, id)
6795 { 6797 {
6798 SignatureRef = id.Id,
6796 FileName = this.GetMsiFilenameValue(shortName, name), 6799 FileName = this.GetMsiFilenameValue(shortName, name),
6797 Section = section, 6800 Section = section,
6798 Key = key, 6801 Key = key,