Skip to content

Commit

Permalink
V4.0.5 is now LKG.
Browse files Browse the repository at this point in the history
  • Loading branch information
barnson committed Mar 25, 2024
1 parent 4217a54 commit aa918bd
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Docusaurus/docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ wix --version
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:

```xml
<Project Sdk="WixToolset.Sdk/4.0.4">
<Project Sdk="WixToolset.Sdk/4.0.5">
</Project>
```

Expand Down
3 changes: 1 addition & 2 deletions src/Docusaurus/docs/releasenotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ WiX v5.0.0 is scheduled for release on 5-April-2024, the 20th anniversary of the
- WiX v5.0.0-rc.1 was released on 8-March-2024.



### Contributors

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

```xml
<Project Sdk="WixToolset.Sdk/4.0.4">
<Project Sdk="WixToolset.Sdk/4.0.5">
```

For `PackageReference`s to WiX v4 extensions, update their `Version` attribute. For example:
Expand Down
4 changes: 2 additions & 2 deletions src/Docusaurus/docs/tools/msbuild.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ sidebar_position: 20
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:

```xml
<Project Sdk="WixToolset.Sdk/4.0.4">
<Project Sdk="WixToolset.Sdk/4.0.5">
</Project>
```

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

```xml
<Project Sdk="WixToolset.Sdk/4.0.4">
<Project Sdk="WixToolset.Sdk/4.0.5">
<PropertyGroup Label="Globals">
<DefineConstants>MyProductNameProperty=$(MyProductNameProperty);</DefineConstants>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Docusaurus/docs/tools/wixexe.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ Manage the extension cache. Extensions are referenced by:
- `id` (uses the latest available version)

:::note
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`
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`
:::

| Subcommand | Description |
Expand Down
4 changes: 2 additions & 2 deletions src/Docusaurus/docs/tools/wixext/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ 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-preview.2" />
<PackageReference Include="WixToolset.Util.wixext" Version="5.0.0-preview.2" />
<PackageReference Include="WixToolset.Bal.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 aa918bd

Please sign in to comment.