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

Commit 6526328

Browse files
committed
WiX v5.0.1
1 parent 0c7db5b commit 6526328

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

src/Docusaurus/docs/intro.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ wix --version
6262
WiX is available as an MSBuild SDK for building from the command line using `dotnet build` from the .NET SDK or the .NET Framework-based `MSBuild` from Visual Studio. SDK-style projects have smart defaults that make for simple .wixproj project authoring. For example, here's a minimal .wixproj that builds an MSI from the .wxs source files in the project directory:
6363

6464
```xml
65-
<Project Sdk="WixToolset.Sdk/5.0.0">
65+
<Project Sdk="WixToolset.Sdk/5.0.1">
6666
</Project>
6767
```
6868

@@ -71,7 +71,7 @@ WiX is available as an MSBuild SDK for building from the command line using `dot
7171
To update your .wixproj MSBuild projects from previous WiX releases, update the `Project` element's `Sdk` attribute:
7272

7373
```xml
74-
<Project Sdk="WixToolset.Sdk/5.0.0">
74+
<Project Sdk="WixToolset.Sdk/5.0.1">
7575
```
7676

7777
For `PackageReference`s to WiX extensions, update their `Version` attribute. For example:

src/Docusaurus/docs/tools/msbuild.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebar_position: 20
77
WiX v4 is available as an MSBuild SDK. SDK-style projects have smart defaults that make for simple .wixproj project authoring. For example, here's a minimal .wixproj that builds an MSI from the .wxs source files in the project directory:
88

99
```xml
10-
<Project Sdk="WixToolset.Sdk/5.0.0">
10+
<Project Sdk="WixToolset.Sdk/5.0.1">
1111
</Project>
1212
```
1313

@@ -143,7 +143,7 @@ You can then reference `MyProductNameProperty`, for example, in other properties
143143
To make property values available as preprocessor variables in your WiX authoring, add them to the `DefineConstants` property. For example:
144144

145145
```xml
146-
<Project Sdk="WixToolset.Sdk/5.0.0">
146+
<Project Sdk="WixToolset.Sdk/5.0.1">
147147
<PropertyGroup Label="Globals">
148148
<DefineConstants>MyProductNameProperty=$(MyProductNameProperty);</DefineConstants>
149149
</PropertyGroup>

src/Docusaurus/docs/tools/wixexe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ Manage the extension cache. Extensions are referenced by:
254254
- `id` (uses the latest available version)
255255

256256
:::note
257-
When omitting `version`, `wix extension` commands could choose a version of an extension that is incompatible with the version of WiX you're running. Use a specific version to avoid that scenario. For example: `wix extension add WixToolset.Util.wixext/5.0.0`
257+
When omitting `version`, `wix extension` commands could choose a version of an extension that is incompatible with the version of WiX you're running. Use a specific version to avoid that scenario. For example: `wix extension add WixToolset.Util.wixext/5.0.1`
258258
:::
259259

260260
| Subcommand | Description |

src/Docusaurus/docs/tools/wixext/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ You might need to specify a version for WiX extension packages (such as when the
6363

6464
```xml
6565
<ItemGroup>
66-
<PackageReference Include="WixToolset.BootstrapperApplications.wixext" Version="5.0.0" />
67-
<PackageReference Include="WixToolset.Util.wixext" Version="5.0.0" />
66+
<PackageReference Include="WixToolset.BootstrapperApplications.wixext" Version="5.0.1" />
67+
<PackageReference Include="WixToolset.Util.wixext" Version="5.0.1" />
6868
</ItemGroup>
6969
```
7070

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# WiX Toolset v5.0.1 available
2+
3+
[WiX v5.0.1][rel] is now available! Read more about it at [the FireGiant blog][fg].
4+
5+
[rel]: /docs/releasenotes#v5
6+
[fg]: https://www.firegiant.com/blog/2024/7/16/wix-v5.0.1-has-been-released/

0 commit comments

Comments
 (0)