WixSharp-wix4.WPF 2.2.0

There is a newer version of this package available.
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
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="WixSharp-wix4.WPF" Version="2.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="WixSharp-wix4.WPF" Version="2.2.0" />
                    
Directory.Packages.props
<PackageReference Include="WixSharp-wix4.WPF" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add WixSharp-wix4.WPF --version 2.2.0
                    
#r "nuget: WixSharp-wix4.WPF, 2.2.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package WixSharp-wix4.WPF@2.2.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=WixSharp-wix4.WPF&version=2.2.0
                    
Install as a Cake Addin
#tool nuget:?package=WixSharp-wix4.WPF&version=2.2.0
                    
Install as a Cake Tool

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 Compatible and additional computed target framework versions.
.NETPlatform dotnet is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.7.2 155 7/8/2025
2.7.1 350 6/11/2025
2.7.0 636 5/18/2025
2.6.2 479 4/30/2025
2.6.1 269 4/6/2025
2.6.0 1,547 2/21/2025
2.5.1 246 2/6/2025
2.5.0 181 2/1/2025
2.4.4 139 1/25/2025
2.4.3 333 12/3/2024
2.4.2 904 10/27/2024
2.4.1 277 10/5/2024
2.4.0.1 332 9/21/2024
2.4.0 145 9/21/2024
2.3.2 3,262 8/10/2024
2.3.1 777 8/4/2024
2.3.0 365 7/13/2024
2.2.1 248 6/29/2024
2.2.0 133 6/29/2024
2.1.7 496 5/27/2024
2.1.6 255 5/1/2024
2.1.5 428 4/6/2024
2.1.2 2,665 3/4/2024
2.1.1 169 2/25/2024
2.1.0 179 2/15/2024
2.0.6-pre 112 1/25/2024
2.0.5 252 1/21/2024
2.0.4 427 12/14/2023
2.0.3 161 12/6/2023
2.0.2 1,457 10/20/2023
2.0.1 815 8/22/2023
2.0.0 604 8/13/2023
1.21.0-pre 201 4/23/2023

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