Skip to content

Commit 99aea4e

Browse files
committed
WiX v6.0.2
1 parent 7f9a88b commit 99aea4e

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

src/content/docs/wix/tools/msbuild.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: MSBuild
55
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:
66

77
```xml
8-
<Project Sdk="WixToolset.Sdk/6.0.0">
8+
<Project Sdk="WixToolset.Sdk/6.0.2">
99
</Project>
1010
```
1111

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

143143
```xml
144-
<Project Sdk="WixToolset.Sdk/6.0.0">
144+
<Project Sdk="WixToolset.Sdk/6.0.2">
145145
<PropertyGroup Label="Globals">
146146
<DefineConstants>MyProductNameProperty=$(MyProductNameProperty);</DefineConstants>
147147
</PropertyGroup>

src/content/docs/wix/tools/wixexe.md

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

254254
:::note
255-
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/6.0.0`
255+
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/6.0.2`
256256
:::
257257

258258
| Subcommand | Description |

src/content/docs/wix/using-wix.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ SDK-style projects have smart defaults that make for simple .wixproj project aut
2828
For example, here's a minimal .wixproj that builds an MSI from the .wxs source files in the project directory:
2929

3030
```xml
31-
<Project Sdk="WixToolset.Sdk/6.0.0">
31+
<Project Sdk="WixToolset.Sdk/6.0.2">
3232
</Project>
3333
```
3434

@@ -37,7 +37,7 @@ For example, here's a minimal .wixproj that builds an MSI from the .wxs source f
3737
To update your .wixproj MSBuild projects from previous WiX releases, update the `Project` element's `Sdk` attribute:
3838

3939
```xml
40-
<Project Sdk="WixToolset.Sdk/6.0.0">
40+
<Project Sdk="WixToolset.Sdk/6.0.2">
4141
```
4242

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

src/content/docs/wix/whatsnew/releasenotes.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ WiX v6 is the second annual release since WiX v4. WiX v6 continues in the tradit
3131
Get started with an SDK-style .wixproj project:
3232

3333
```xml
34-
<Project Sdk="WixToolset.Sdk/6.0.0">
34+
<Project Sdk="WixToolset.Sdk/6.0.2">
3535
</Project>
3636
```
3737

@@ -56,6 +56,8 @@ to build it.
5656

5757
### WiX v6 releases
5858

59+
- WiX v6.0.2 was published 28-Aug-2025 on nuget.org for the [MSBuild SDK](https://www.nuget.org/packages/WixToolset.Sdk) and [.NET tool](https://www.nuget.org/packages/wix) and as a [GitHub release](https://github.com/wixtoolset/wix/releases/tag/v6.0.2) to fix a lone bug:
60+
* [Scale bundle splash screens better](https://github.com/wixtoolset/issues/issues/9148), opened by [@barnson](https://github.com/barnson), [also fixed](https://github.com/wixtoolset/wix/pull/656) by [@barnson](https://github.com/barnson)
5961
- WiX v6.0.1 was published 5-Jun-2025 on nuget.org for the [MSBuild SDK](https://www.nuget.org/packages/WixToolset.Sdk) and [.NET tool](https://www.nuget.org/packages/wix) and as a [GitHub release](https://github.com/wixtoolset/wix/releases/tag/v6.0.1) to fix the following bugs:
6062
* [Bundle splash screen showing on removal of previous base version during upgrade](https://github.com/wixtoolset/issues/issues/7969), from [@yuvnith](https://github.com/yuvnith), [fixed](https://github.com/wixtoolset/wix/pull/635) by [@barnson](https://github.com/barnson)
6163
* [Upgrading to Wix Toolset v6 Causes Build Exception](https://github.com/wixtoolset/issues/issues/9028), from [@oollie34](https://github.com/oollie34), [fixed](https://github.com/wixtoolset/wix/pull/634) by [@barnson](https://github.com/barnson)

0 commit comments

Comments
 (0)