Skip to content

Commit

Permalink
Use the new name for WixToolset.Bal.wixext
Browse files Browse the repository at this point in the history
  • Loading branch information
l0rd authored and robmen committed Jun 26, 2024
1 parent 9ddea92 commit e87cf1a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Docusaurus/docs/tools/wixext/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The following WiX extensions are provided by the WiX team:

| Extension | Documentation |
| --------- | ------------- |
| WixToolset.Bal.wixext | [Bal schema](../../schema/bal/index.md) |
| WixToolset.BootstrapperApplications.wixext | [Bal schema](../../schema/bal/index.md) |
| WixToolset.ComPlus.wixext | [Complus schema](../../schema/complus/index.md) |
| WixToolset.Dependency.wixext | [Dependency schema](../../schema/dependency/index.md) |
| WixToolset.DifxApp.wixext | [Difxapp schema](../../schema/difxapp/index.md) |
Expand Down Expand Up @@ -43,8 +43,8 @@ For example:

```xml
wix extension add -g WixToolset.Util.wixext
wix extension add -g WixToolset.Bal.wixext
wix build Bundle.wxs Bundle.en-us.wxl -ext WixToolset.Util.wixext -ext WixToolset.Bal.wixext
wix extension add -g WixToolset.BootstrapperApplications.wixext
wix build Bundle.wxs Bundle.en-us.wxl -ext WixToolset.Util.wixext -ext WixToolset.BootstrapperApplications.wixext
```


Expand All @@ -54,7 +54,7 @@ WiX extensions are available as NuGet packages on NuGet.org. You can reference t

```xml
<ItemGroup>
<PackageReference Include="WixToolset.Bal.wixext" />
<PackageReference Include="WixToolset.BootstrapperApplications.wixext" />
<PackageReference Include="WixToolset.Util.wixext" />
</ItemGroup>
```
Expand All @@ -63,7 +63,7 @@ You might need to specify a version for WiX extension packages (such as when the

```xml
<ItemGroup>
<PackageReference Include="WixToolset.Bal.wixext" Version="5.0.0-rc.2" />
<PackageReference Include="WixToolset.BootstrapperApplications.wixext" Version="5.0.0-rc.2" />
<PackageReference Include="WixToolset.Util.wixext" Version="5.0.0-rc.2" />
</ItemGroup>
```
Expand Down

0 comments on commit e87cf1a

Please sign in to comment.