Skip to content

Commit 7f9a88b

Browse files
committed
Add breaking change note.
Fixes wixtoolset/issues#9142
1 parent b99fc04 commit 7f9a88b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/content/docs/wix/whatsnew/index.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,14 @@ WiX v5 addressed one of the custom actions and WiX v6 addresses the other, so no
8585
ExtendedPathValidation="yes" />
8686
```
8787

88+
:::caution[Breaking change for customized dialog sets]
89+
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:
90+
91+
```xml
92+
<Publish Dialog="BrowseDlg" Control="OK" Event="SetTargetPath" Value="[_BrowseProperty]" Order="3" />
93+
<Publish Dialog="BrowseDlg" Control="OK" Event="EndDialog" Value="Return" Order="4" />
94+
```
95+
:::
8896

8997
### Burn locks extracted payloads
9098

0 commit comments

Comments
 (0)