Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/content/docs/wix/whatsnew/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,14 @@ WiX v5 addressed one of the custom actions and WiX v6 addresses the other, so no
ExtendedPathValidation="yes" />
```

:::caution[Breaking change for customized dialog sets]
As part of the effort to remove custom actions from WixUI, the `BrowseDlg` dialog, which lets the user browse for a directory, has its behavior moved out of the `BrowseDlg` dialog itself and into the dialog set. If you create a customized dialog set, you need to do likewise. For example:

```xml
<Publish Dialog="BrowseDlg" Control="OK" Event="SetTargetPath" Value="[_BrowseProperty]" Order="3" />
<Publish Dialog="BrowseDlg" Control="OK" Event="EndDialog" Value="Return" Order="4" />
```
:::

### Burn locks extracted payloads

Expand Down