Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V4.0.5 is now LKG. #267

Merged
merged 1 commit into from
Mar 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading