From 2724f66685b1df615db04089f1f91ed9903e9901 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Mon, 25 Mar 2024 13:48:05 -0400 Subject: [PATCH] V4.0.5 is now LKG. --- src/Docusaurus/docs/intro.md | 2 +- src/Docusaurus/docs/releasenotes.md | 3 +-- src/Docusaurus/docs/tools/msbuild.md | 4 ++-- src/Docusaurus/docs/tools/wixexe.md | 2 +- src/Docusaurus/docs/tools/wixext/index.md | 4 ++-- 5 files changed, 7 insertions(+), 8 deletions(-) diff --git a/src/Docusaurus/docs/intro.md b/src/Docusaurus/docs/intro.md index feb2891d..26bd4569 100644 --- a/src/Docusaurus/docs/intro.md +++ b/src/Docusaurus/docs/intro.md @@ -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 - + ``` diff --git a/src/Docusaurus/docs/releasenotes.md b/src/Docusaurus/docs/releasenotes.md index b39e8d73..47b32452 100644 --- a/src/Docusaurus/docs/releasenotes.md +++ b/src/Docusaurus/docs/releasenotes.md @@ -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: @@ -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 - + ``` For `PackageReference`s to WiX v4 extensions, update their `Version` attribute. For example: diff --git a/src/Docusaurus/docs/tools/msbuild.md b/src/Docusaurus/docs/tools/msbuild.md index b7d62f72..f76b8848 100644 --- a/src/Docusaurus/docs/tools/msbuild.md +++ b/src/Docusaurus/docs/tools/msbuild.md @@ -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 - + ``` @@ -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 - + MyProductNameProperty=$(MyProductNameProperty); diff --git a/src/Docusaurus/docs/tools/wixexe.md b/src/Docusaurus/docs/tools/wixexe.md index 0633fa8e..a4c118e5 100644 --- a/src/Docusaurus/docs/tools/wixexe.md +++ b/src/Docusaurus/docs/tools/wixexe.md @@ -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 | diff --git a/src/Docusaurus/docs/tools/wixext/index.md b/src/Docusaurus/docs/tools/wixext/index.md index a193e669..759d4e4a 100644 --- a/src/Docusaurus/docs/tools/wixext/index.md +++ b/src/Docusaurus/docs/tools/wixext/index.md @@ -63,8 +63,8 @@ You might need to specify a version for WiX extension packages (such as when the ```xml - - + + ```