diff options
author | Rob Mensching <rob@firegiant.com> | 2022-07-07 17:49:56 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-07-10 21:42:26 -0700 |
commit | 69b10dec18ed9c3ac115db5a207b506807862e2b (patch) | |
tree | c1dd9b107fba5e89e57ddaf79801e9b09309dd4d | |
parent | 4ec3d72dc0216317052215a7cba785cf635b9994 (diff) | |
download | wix-69b10dec18ed9c3ac115db5a207b506807862e2b.tar.gz wix-69b10dec18ed9c3ac115db5a207b506807862e2b.tar.bz2 wix-69b10dec18ed9c3ac115db5a207b506807862e2b.zip |
Search for WiX Extensions with `.wixext.dll`
Previous search of just `.dll` will catches too many assemblies that
are not extensions. The WiX v4 convention of `.wixext.dll` narrows
down to much more concise list of assemblies.
-rw-r--r-- | src/wix/WixToolset.Sdk/tools/wix.targets | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wix/WixToolset.Sdk/tools/wix.targets b/src/wix/WixToolset.Sdk/tools/wix.targets index 0e50ad0d..87dfab33 100644 --- a/src/wix/WixToolset.Sdk/tools/wix.targets +++ b/src/wix/WixToolset.Sdk/tools/wix.targets | |||
@@ -455,7 +455,7 @@ | |||
455 | <ResolveWixReferences | 455 | <ResolveWixReferences |
456 | WixReferences="@(WixExtension)" | 456 | WixReferences="@(WixExtension)" |
457 | SearchPaths="$(WixExtensionSearchPaths)" | 457 | SearchPaths="$(WixExtensionSearchPaths)" |
458 | SearchFilenameExtensions=".dll"> | 458 | SearchFilenameExtensions=".wixext.dll"> |
459 | <Output TaskParameter="ResolvedWixReferences" ItemName="_AllResolvedWixExtensionPaths" /> | 459 | <Output TaskParameter="ResolvedWixReferences" ItemName="_AllResolvedWixExtensionPaths" /> |
460 | </ResolveWixReferences> | 460 | </ResolveWixReferences> |
461 | 461 | ||