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

Commit aa918bd

Browse files
committed
V4.0.5 is now LKG.
1 parent 4217a54 commit aa918bd

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

src/Docusaurus/docs/intro.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ wix --version
4242
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:
4343

4444
```xml
45-
<Project Sdk="WixToolset.Sdk/4.0.4">
45+
<Project Sdk="WixToolset.Sdk/4.0.5">
4646
</Project>
4747
```
4848

src/Docusaurus/docs/releasenotes.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ WiX v5.0.0 is scheduled for release on 5-April-2024, the 20th anniversary of the
3030
- WiX v5.0.0-rc.1 was released on 8-March-2024.
3131

3232

33-
3433
### Contributors
3534

3635
Here are the people who contributed to WiX v5:
@@ -110,7 +109,7 @@ WiX v4.0.5, released on Friday, 22-Mar-2024, contains fixes for two security vul
110109
To update your .wixproj MSBuild projects from previous WiX v4 releases, update the `Project` element's `Sdk` attribute:
111110

112111
```xml
113-
<Project Sdk="WixToolset.Sdk/4.0.4">
112+
<Project Sdk="WixToolset.Sdk/4.0.5">
114113
```
115114

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

src/Docusaurus/docs/tools/msbuild.md

+2-2
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/4.0.4">
10+
<Project Sdk="WixToolset.Sdk/4.0.5">
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/4.0.4">
146+
<Project Sdk="WixToolset.Sdk/4.0.5">
147147
<PropertyGroup Label="Globals">
148148
<DefineConstants>MyProductNameProperty=$(MyProductNameProperty);</DefineConstants>
149149
</PropertyGroup>

src/Docusaurus/docs/tools/wixexe.md

+1-1
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/4.0.4`
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/4.0.5`
258258
:::
259259

260260
| Subcommand | Description |

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

+2-2
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.Bal.wixext" Version="5.0.0-preview.2" />
67-
<PackageReference Include="WixToolset.Util.wixext" Version="5.0.0-preview.2" />
66+
<PackageReference Include="WixToolset.Bal.wixext" Version="5.0.0-rc.2" />
67+
<PackageReference Include="WixToolset.Util.wixext" Version="5.0.0-rc.2" />
6868
</ItemGroup>
6969
```
7070

0 commit comments

Comments
 (0)