From e3cef11164257763a55ff847ed703f625f7700d7 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 25 Apr 2024 13:59:00 -0700 Subject: [PATCH] Make review improvements --- src/Docusaurus/docs/fivefour/index.md | 2 +- src/Docusaurus/docs/fivefour/oopbas.md | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Docusaurus/docs/fivefour/index.md b/src/Docusaurus/docs/fivefour/index.md index 533819ce..6223f505 100644 --- a/src/Docusaurus/docs/fivefour/index.md +++ b/src/Docusaurus/docs/fivefour/index.md @@ -200,4 +200,4 @@ For more information, see the [_Default feature_ WIP](https://github.com/wixtool - WixToolset.Netfx.wixext's [DotNetCompatibilityCheck](../schema/netfx/dotnetcompatibilitycheck.md) now sets the specified property to 13 when the requested platform is not compatible with the platform the installer is running on. Thanks to [@apacker1](https://github.com/apacker1) for the [pull request](https://github.com/wixtoolset/wix/pull/459). - WixToolset.Util.wixext now has the following `_NODOMAIN` properties from [WixQueryOsWellKnownSID](../tools/wixext/wininfo.md#querywindowswellknownsids): `WIX_ACCOUNT_ADMINISTRATORS_NODOMAIN`, `WIX_ACCOUNT_GUESTS_NODOMAIN`, `WIX_ACCOUNT_LOCALSERVICE_NODOMAIN`, `WIX_ACCOUNT_LOCALSYSTEM_NODOMAIN`, `WIX_ACCOUNT_NETWORKSERVICE_NODOMAIN`, and `WIX_ACCOUNT_USERS_NODOMAIN`. Thanks to [@mistoll](https://github.com/mistoll) for the [pull request](https://github.com/wixtoolset/wix/pull/407). -See [Out-of-process bootstrapper applications](/docs/fivefour/oopbas/) for additional extension changes related to building bundles. +See [Out-of-process bootstrapper applications](oopbas.md) for additional extension changes related to building bundles. diff --git a/src/Docusaurus/docs/fivefour/oopbas.md b/src/Docusaurus/docs/fivefour/oopbas.md index cad916a9..913fec7e 100644 --- a/src/Docusaurus/docs/fivefour/oopbas.md +++ b/src/Docusaurus/docs/fivefour/oopbas.md @@ -80,8 +80,7 @@ To take advantage of the breaking change, we took the opportunity to improve the * `WixToolset.BalUtil` - renamed to `WixToolset.BootstrapperApplicationApi` to provide the native headers and libraries to communicate with Burn. Also, split out the `WixToolset.WixStandardBootstrapperApplicationFunctionApi` for WixStdBA BAFunctions API. * `WixToolset.Mba.Core` - merged the managed libraries into the `WixToolset.BootstrapperApplicationApi` so there is a single package for custom bootstrapper applications. * `WixToolset.BextUtil` - renamed to `WixToolset.BootstrapperExtensionApi`. -* `WixToolset.Bal.wixext` - renamed to `WixToolset.BootstrapperApplications.wixext` but also kept `WixToolset.Bal.wixext` for backwards compatibility with `PackageReferences` in MSBuild. Note: this means that if using `wix.exe` to add extensions you will need to use the new name `WixToolset.BootstrapperApplications.wixext`. -* `WixToolset.Dnc.HostGenerator` - no longer needed in WiX v5. +* `WixToolset.Bal.wixext` - renamed to `WixToolset.BootstrapperApplications.wixext` but also kept `WixToolset.Bal.wixext` for backwards compatibility with `PackageReference` in MSBuild projects. Note: When using `wix.exe`, you need to use the new name `WixToolset.BootstrapperApplications.wixext`. :::tip