WixSharp_wix4 2.8.0

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

Showing the top 1 NuGet packages that depend on WixSharp_wix4:

Package Downloads
Nefarius.Utilities.WixSharp

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

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.8.0 1,040 9/6/2025
2.7.7 1,704 8/16/2025
2.7.6 1,051 8/4/2025
2.7.5 200 7/30/2025
2.7.4 595 7/24/2025
2.7.3 1,744 7/21/2025
2.7.2 664 7/8/2025
2.7.1 2,192 6/11/2025
2.7.0 1,545 5/18/2025
2.6.2 4,628 4/30/2025
2.6.1 2,822 4/6/2025
2.6.0 8,980 2/21/2025
2.5.1 7,503 2/6/2025
2.5.0 668 2/1/2025
2.4.4 889 1/25/2025
2.4.3 4,353 12/3/2024
2.4.2 6,564 10/27/2024
2.4.1 5,136 10/5/2024
2.4.0 1,996 9/21/2024
2.3.2 6,751 8/10/2024
2.3.1 1,137 8/4/2024
2.3.0 2,826 7/13/2024
2.2.1 722 6/29/2024
2.2.0 219 6/29/2024
2.1.7 1,761 5/27/2024
2.1.6 896 5/1/2024
2.1.5 13,691 4/6/2024
2.1.2 5,691 3/4/2024
2.1.1 324 2/25/2024
2.1.0 517 2/15/2024
2.0.6-pre 217 1/25/2024
2.0.5 584 1/21/2024
2.0.4 475 12/14/2023
2.0.3 305 12/6/2023
2.0.2 2,175 10/20/2023
2.0.1 1,388 8/22/2023
2.0.0 2,266 8/13/2023
1.21.0-pre 464 4/23/2023

Release v2.8.0.0
- Added generic signer class:
 ```c#
 project.DigitalSignature = new GenericSigner
        {
            Implementation = (file) =>
            {
                byte[] unsignedContent = IO.File.ReadAllBytes(file);
                byte[] signedContent = SigningService.Sign(unsignedContent);

                System.IO.File.WriteAllBytes(file, signedContent);
                return 0;
            }
        };
 ```

- #1833: Antivirus problems during installation of WixSharp built MSIs
 Added API for signing embedded assemblies (e.g. WixSharp.UI)
 ```c#
 Compiler.SignAllFilesOptions.SignEmbeddedAssemblies = true; // the default is true anyway
 ```

- #1832: SetupEventArgs.IsUninstalling is false when uninstalling through modify-dialog