WixSharp_wix4 2.12.2

dotnet add package WixSharp_wix4 --version 2.12.2
                    
NuGet\Install-Package WixSharp_wix4 -Version 2.12.2
                    
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" Version="2.12.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="WixSharp_wix4" Version="2.12.2" />
                    
Directory.Packages.props
<PackageReference Include="WixSharp_wix4" />
                    
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 --version 2.12.2
                    
#r "nuget: WixSharp_wix4, 2.12.2"
                    
#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@2.12.2
                    
#: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&version=2.12.2
                    
Install as a Cake Addin
#tool nuget:?package=WixSharp_wix4&version=2.12.2
                    
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 WixSharp binaries.

           If you need only Wix# binaries you may want to use WixSharp.bin package instead.

           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

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on WixSharp_wix4:

Package Downloads
Nefarius.Utilities.WixSharp

Summary. README takes priority over this but nice to have.

MsiBuilder

MSI builder based on WixSharp

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on WixSharp_wix4:

Repository Stars
icsharpcode/ILSpy
.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
Version Downloads Last Updated
2.12.2 1,610 2/7/2026
2.12.1 1,321 1/25/2026
2.12.0 12,322 11/11/2025
2.10.0 1,692 11/1/2025
2.9.1-pre 275 10/17/2025
2.8.0 7,781 9/6/2025
2.7.7 3,046 8/16/2025
2.7.6 1,475 8/4/2025
2.7.5 517 7/30/2025
2.7.4 1,066 7/24/2025
2.7.3 3,844 7/21/2025
2.7.2 1,001 7/8/2025
2.7.1 4,929 6/11/2025
2.7.0 1,950 5/18/2025
2.6.2 10,850 4/30/2025
2.6.1 4,505 4/6/2025
2.6.0 17,025 2/21/2025
2.5.1 10,233 2/6/2025
2.5.0 1,005 2/1/2025
2.4.4 1,247 1/25/2025
Loading failed

Release v2.12.2.0

- #1887 QOL request: batch files together into fewer signtool invocations
- ProjectFileSigner is extended to support batch signing for all any files not embedded assemblies only

Curtsey of @dand-oss
- Added: FileAssociation.IconFile property for auto-registering icon files (curtsey of dand-oss)
 When IconFile is set to a path, WixSharp automatically registers an Icon element and uses its ID for the file association.
 This simplifies icon setup for non-advertised file associations where the Icon attribute must be an Icon Id rather than a file path.
- Added: InstalledFileAction resolves file key by name if ID not found
 When the Key property doesn't match an exact file ID, WixSharp now searches for a file by name (case-insensitive) and uses its ID.
 This allows using simple filenames like "MyApp.exe" instead of having to specify the WiX-generated file ID.
 If multiple files match the name, an exception is thrown with a clear error message listing the matching files.