Skip to content
This repository was archived by the owner on Feb 14, 2025. It is now read-only.

Use the new name for WixToolset.Bal.wixext #286

Merged
merged 1 commit into from
Jun 26, 2024
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
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
Loading