WixSharp-wix4.WPF
2.2.0
See the version list below for details.
dotnet add package WixSharp-wix4.WPF --version 2.2.0
NuGet\Install-Package WixSharp-wix4.WPF -Version 2.2.0
<PackageReference Include="WixSharp-wix4.WPF" Version="2.2.0" />
<PackageVersion Include="WixSharp-wix4.WPF" Version="2.2.0" />
<PackageReference Include="WixSharp-wix4.WPF" />
paket add WixSharp-wix4.WPF --version 2.2.0
#r "nuget: WixSharp-wix4.WPF, 2.2.0"
#:package WixSharp-wix4.WPF@2.2.0
#addin nuget:?package=WixSharp-wix4.WPF&version=2.2.0
#tool nuget:?package=WixSharp-wix4.WPF&version=2.2.0
Wix# is a framework for building a complete MSI or WiX source code by using build script files written with the C# syntax.
The package contains Wix# binaries only.
In order to use this package you need have WiX Toolset installed: `dotnet tool install --global wix`
The package is tested against WIX (Windows Installer Xml) Toolset v4.0.1.0
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NETPlatform | dotnet is compatible. |
-
- Caliburn.Micro (>= 4.0.212)
- WixSharp_wix4.bin (>= 2.2.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2.12.3 | 92 | 3/8/2026 |
| 2.12.2 | 200 | 2/7/2026 |
| 2.12.1 | 224 | 1/25/2026 |
| 2.12.0 | 748 | 11/11/2025 |
| 2.10.0 | 617 | 11/1/2025 |
| 2.9.1-pre | 181 | 10/17/2025 |
| 2.8.0 | 331 | 9/6/2025 |
| 2.7.7 | 282 | 8/16/2025 |
| 2.7.6 | 250 | 8/4/2025 |
| 2.7.5 | 189 | 7/30/2025 |
| 2.7.4 | 571 | 7/24/2025 |
| 2.7.3 | 1,092 | 7/21/2025 |
| 2.7.2 | 372 | 7/8/2025 |
| 2.7.1 | 505 | 6/11/2025 |
| 2.7.0 | 800 | 5/18/2025 |
| 2.6.2 | 1,126 | 4/30/2025 |
| 2.6.1 | 6,734 | 4/6/2025 |
| 2.6.0 | 2,884 | 2/21/2025 |
| 2.5.1 | 344 | 2/6/2025 |
| 2.2.0 | 238 | 6/29/2024 |
Release v2.2.0.0
- Implemented `MsiExePackage`. Triggered by #1554
The dedicated sample `WixBootstrapper_MsiEmbeddedUI` shows how to use it
```C#
var bootstrapper =
new Bundle("Managed Product Bundle",
new MsiExePackage(msi)
{
Name = "ManagedProduct",
});
```
- Issue #1557: Error when specifying Package Platform as ARM64
- Added `restart elevated` routine for custom BA sample
- Added `WixProject.WixBuildCommandGenerated` event. Can be used to manipulate `wix.exe` command line arguments. Triggered by #1557
- Added `CommonTasks.MapAsDeferredProperty` extension method:
```C#
project.MapAsDeferredProperty("MYPROPERTY");
// instead of
project.DefaultDeferredProperties += ",MYPROPERTY";
```
- Added `string.CompleSelfHostedMsi` extension for building self executable msi files:
```C#
msi.CompleSelfHostedMsi(msi + ".exe");
```
- added calling `dotnet tool restore` when using wix as a local tool. Triggered by #1546