Skip to content

Commit d5be8c8

Browse files
committed
WiX v7.0.0-rtm!
1 parent f8ef517 commit d5be8c8

9 files changed

Lines changed: 31 additions & 18 deletions

File tree

src/content/docs/heatwave/index.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,13 @@ HeatWave is FireGiant's Visual Studio extension for modern WiX. HeatWave Communi
1313
- Project and item templates
1414
- Property pages to control how the project builds
1515

16-
HeatWave peacefully coexists with the WiX v3 Visual Studio extension, which lets you mix and match WiX v3 and modern WiX projects in a solution. You can convert the WiX v3 projects to modern WiX gradually.
16+
HeatWave peacefully coexists with the WiX v3 Visual Studio extension, which lets you convert WiX v3 projects to modern WiX.
1717

1818
## Installing HeatWave
1919

2020
HeatWave is available from the Visual Studio Marketplace.
2121

22-
- [Download HeatWave for Visual Studio 2022 here.](https://marketplace.visualstudio.com/items?itemName=FireGiant.FireGiantHeatWaveDev17)
23-
- [Download HeatWave for Visual Studio 2019 here.](https://marketplace.visualstudio.com/items?itemName=FireGiant.FireGiantHeatWaveDev16)
22+
- [Download HeatWave for Visual Studio 2026 and 2022 here.](https://marketplace.visualstudio.com/items?itemName=FireGiant.FireGiantHeatWaveDev17)
2423

2524
Double-click the downloaded .vsix file to install HeatWave.
2625

src/content/docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { Card, CardGrid } from '@astrojs/starlight/components';
2222
<CardGrid>
2323
<Card title="HeatWave" icon="seti:css">
2424
Seamless Visual Studio integration for your WiX projects.
25-
Visual Studio 2022 and 2019 supported.
25+
Visual Studio 2026 and 2022 supported.
2626

2727
[Read more about HeatWave](https://www.firegiant.com/heatwave/)
2828

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 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.2">
8+
<Project Sdk="WixToolset.Sdk/7.0.0">
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.2">
144+
<Project Sdk="WixToolset.Sdk/7.0.0">
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.2`
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/7.0.0`
256256
:::
257257

258258
| Subcommand | Description |

src/content/docs/wix/tutorial/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ You can follow along this whole tutorial one step at a time. You can also hop in
1111

1212
## System requirements
1313

14-
WiX is available as an MSBuild SDK and .NET tool when using a .NET 6.0 or later SDK. It is also available as an MSBuild SDK when using MSBuild in Visual Studio 2019 and later.
14+
WiX is available as an MSBuild SDK and .NET tool when using a .NET 6.0 or later SDK. It is also available as an MSBuild SDK when using MSBuild in Visual Studio 2022 and later.
1515

16-
In this tutorial, we're using Visual Studio 2022 but you can use Visual Studio 2019 -- or even no Visual Studio at all. But sometimes the words and procedures are assuming the use of current versions of Visual Studio 2022. You can also just follow along and not actually play with the code...but where's the fun in that?
16+
In this tutorial, we're using Visual Studio 2022 but you can use Visual Studio 2026 -- or even no Visual Studio at all. But sometimes the words and procedures are assuming the use of current versions of Visual Studio 2022. You can also just follow along and not actually play with the code...but where's the fun in that?
1717

1818

1919
## The story so far

src/content/docs/wix/tutorial/sprint1/Install HeatWave.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@ We're building our app and its installer in Visual Studio, so we need a Visual S
99

1010
HeatWave is available from the Visual Studio Marketplace.
1111

12-
- [Download HeatWave for Visual Studio 2022 here.][dl17]
13-
- [Download HeatWave for Visual Studio 2019 here.][dl16]
12+
[Download HeatWave for Visual Studio 2022 and 2026 here.][dl]
1413

1514
Double-click the downloaded .vsix file to install HeatWave.
1615

16+
You can also install HeatWave inside Visual Studio by choosing `Extensions` then `Manage Extensions`.
1717

18-
[dl17]: https://marketplace.visualstudio.com/items?itemName=FireGiant.FireGiantHeatWaveDev17
19-
[dl16]: https://marketplace.visualstudio.com/items?itemName=FireGiant.FireGiantHeatWaveDev16
18+
[dl]: https://marketplace.visualstudio.com/items?itemName=FireGiant.FireGiantHeatWaveDev17

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.2">
31+
<Project Sdk="WixToolset.Sdk/7.0.0">
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.2">
40+
<Project Sdk="WixToolset.Sdk/7.0.0">
4141
```
4242

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

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

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,22 @@ sidebar:
44
order: 2
55
---
66

7+
## Get the latest version of WiX
8+
9+
- [WiX MSBuild SDK](https://www.nuget.org/packages/WixToolset.Sdk)
10+
- [.NET command-line tool](https://www.nuget.org/packages/wix)
11+
- [GitHub release](https://github.com/wixtoolset/wix/releases/tag/v7.0.0)
12+
13+
714
## What's new in WiX v7
815

9-
WiX v7.0.0-rc.2 is available. See [the release notes](/wix/whatsnew/releasenotes/#wix-v7) for details about this prerelease.
16+
WiX v7 continues our annual release cadence, first introduced with WiX v4 way back in 2023. This release contains a normal number of features and fixes but the highlights are:
17+
18+
- Burn now supports dual-purpose MSI packages in bundles, which lets a user choose to install a bundle per-user or per-machine at install time.
19+
- WiX v7 adopts the OSMF EULA v1.1 that avoids requiring a fee until you make at least US$10,000 a year from your projects that use WiX and requires explicit acceptance of the EULA.
20+
- Extra-long paths (i.e., paths longer than 260 characters) are now generally supported for locating payloads in packages.
21+
22+
See [the release notes](/wix/whatsnew/releasenotes/#wix-v7) for details about this release.
1023

1124

1225
## What's new in WiX v6

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ sidebar:
66

77
## WiX v7
88

9+
- WiX v7.0.0 was published 6-Apr-2026.
910
- WiX v7.0.0-rc.2 was published 5-Mar-2026.
1011
- WiX v7.0.0-rc.1 was published 6-Feb-2026.
1112

@@ -28,6 +29,7 @@ WiX v7 continues our three-year-old tradition of shipping releases annually and
2829
- Make WixUI_Advanced handle 64-bit installation directories. (Issue [2165](https://github.com/wixtoolset/issues/issues/2165))
2930
- Add `ProductSearch/@Result='exists'` to Burn searches. (Issue [9079](https://github.com/wixtoolset/issues/issues/9079))
3031

32+
3133
## WiX v6
3234

3335
WiX v6 is the second annual release since WiX v4. WiX v6 continues in the tradition of being intentionally highly compatible with its predecessor WiX v5&mdash;and by the transitive property of backward compatibility, with WiX v4 too. WiX v6 contains a number of fixes and enhancements of existing features, including those newly introduced in WiX v5. Notable examples include:
@@ -55,15 +57,15 @@ WiX v6 is the second annual release since WiX v4. WiX v6 continues in the tradit
5557
Get started with an SDK-style .wixproj project:
5658

5759
```xml
58-
<Project Sdk="WixToolset.Sdk/6.0.2">
60+
<Project Sdk="WixToolset.Sdk/7.0.0">
5961
</Project>
6062
```
6163

6264
and simple package code in a .wxs file:
6365

6466
```xml
6567
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
66-
<Package Id="Acme.HelloWorld" Name="HelloWorld" Version="6.0.0" Manufacturer="Acme">
68+
<Package Id="Acme.HelloWorld" Name="HelloWorld" Version="7.0.0" Manufacturer="Acme">
6769
<Files Include="*" />
6870
</Package>
6971
</Wix>

0 commit comments

Comments
 (0)