WiX Toolset
The WiX Toolset (Windows Installer XML) is the long-standing toolset for building Windows Installer packages (.msi, .msm, bundles) from XML source. With the release of WiX v6.0 in April 2025, the project — stewarded by Rob Mensching and FireGiant — introduced the Open Source Maintenance Fee (OSMF). The source code stays open source under the Microsoft Reciprocal License (MS-RL), but revenue-generating organizations that consume the official binaries are now expected to pay a monthly maintenance fee. This is the same funding mechanism later adopted by NPOI.
What Changed
The WiX source license did not change — it remains MS-RL, and you can still read, fork, and build the code freely. What changed is a contractual obligation layered onto the released binaries (the NuGet packages and installers you actually consume). Starting with v6.0, an End-User License Agreement (EULA) is attached to those binaries requiring revenue-generating consumers to pay the maintenance fee.
Rob Mensching framed OSMF as a middle path between pure OSS and going fully commercial — the code stays open, but companies profiting from it are asked to fund its upkeep. From the proposal (wixtoolset/issues#8974):
"We plan to enforce the maintenance fee starting with the release of WiX v6.0 on April 5th, 2025."
Who Pays and How Much
The fee is paid by sponsoring the wixtoolset GitHub organization via GitHub Sponsors, at a tier matching organization size:
- Small (< 20 people): $10/month
- Medium (20–100 people): $40/month
- Large (> 100 people): $60/month
A minimum annual revenue threshold of US $10,000 was added in OSMF EULA v1.1 (February 2026), exempting hobbyists and very small organizations. If your organization does not generate revenue, or falls below the threshold, no fee is due and you can keep using the toolset for free.
Customers of FireGiant's WiX Developer Direct commercial support do not pay the OSMF separately — it is included in their support agreement.
What About WixSharp?
WixSharp — the popular C# managed wrapper for authoring installers — is a separate project and is not changing its license. Per Oleg Shilo's wiki note:
"WixSharp is available under a pure Open Source Licence MIT."
However, WixSharp uses the WiX Toolset as its build backend to compile the actual MSI. So if you drive WiX v6 through WixSharp in a revenue-generating context, the OSMF obligation on the WiX binaries still applies. You can avoid it by targeting the WiX v5 toolchain (or earlier), which WixSharp continues to support.
What This Means For You
- Using WiX ≤ 5.x: no maintenance fee — v5 stays under the previous model. But no v6 features, and the line will eventually stop receiving updates.
- Using WiX ≥ 6.0 as a hobbyist / non-revenue / under $10k: still free.
- Using WiX ≥ 6.0 in a revenue-generating organization above the threshold: you are expected to pay the OSMF tier for your org size, or hold a FireGiant Developer Direct support agreement.
Alternatives
WiX authors true Windows Installer (.msi) packages, which is a niche most alternatives don't fully cover. The right choice depends on whether you actually need MSI or just "an installer."
-
Pin to WiX v5:
- The last major line before OSMF. Still MS-RL, no fee.
- Pros: Zero migration, full MSI authoring, free. Simplest escape hatch.
- Cons: No v6 improvements or official support; the line will age out over time.
-
- Mature, free script-driven installer builder. Licensed under a permissive (modified BSD-style) license.
- Pros: Free for commercial use, battle-tested, great docs, Pascal scripting for custom logic.
- Cons: Produces
.exeinstallers, not.msi— a problem if your deployment (e.g. enterprise GPO/Intune) requires MSI.
-
NSIS (Nullsoft Scriptable Install System):
- Lightweight, scriptable installer system. zlib/libpng-style license.
- Pros: Tiny output, highly scriptable, free. Long track record.
- Cons: Dated scripting language;
.exeoutput, not MSI.
-
- Modern MIT-licensed install/update framework (successor to Squirrel, by the same author).
- Pros: Very fast, built-in auto-updates, cross-platform, great for .NET desktop apps.
- Cons: App-deployment focused — not a general-purpose MSI authoring tool.
-
Visual Studio Installer Projects:
- Microsoft's free VS extension for building basic MSI packages via a GUI.
- Pros: First-party, free, no scripting, produces real MSI.
- Cons: Limited feature set; tied to Visual Studio; awkward for complex/CI scenarios.
For modern app packaging, the free MSIX Packaging Tool from Microsoft is also worth evaluating as a replacement for MSI entirely.
Conclusion
WiX Toolset's source stays open under MS-RL, but v6.0 attaches the Open Source Maintenance Fee to its binaries — revenue-generating organizations above ~$10k/year are expected to pay $10–$60/month via GitHub Sponsors. Hobbyists, small orgs, and FireGiant support customers are unaffected. Teams that don't want the obligation can pin to WiX v5 (and target it from WixSharp), or move to free alternatives like Inno Setup, NSIS, or Velopack depending on whether they truly need MSI output.
Links and References
- FireGiant: Open Source Maintenance Fee
- FireGiant: WiX v6.0.0 available
- GitHub: Introduce the Open Source Maintenance Fee (wixtoolset/issues#8974)
- Rob Mensching: Open Source Maintenance Fee Two Months In
- Rob Mensching: Open Source Maintenance Fee v1.1
- GitHub: wixtoolset/wix
- GitHub Sponsors: wixtoolset
- WixSharp: New WiX v6 Licencing Model (wiki)
- Open Source Maintenance Fee: For Consumers
- Alternative: Inno Setup
- Alternative: NSIS
- Alternative: Velopack
Related News
- 2026-02-04
Open Source Maintenance Fee v1.1
The OSMF EULA is updated to v1.1, adding a minimum annual revenue threshold of US $10,000 before the maintenance fee applies — explicitly exempting hobbyists and very small organizations from the WiX Toolset fee.
- 2025-05-12
Open Source Maintenance Fee Two Months In
Rob Mensching reflects on the first two months of the Open Source Maintenance Fee model on the WiX Toolset. The OSMF keeps the source open while asking revenue-generating consumers to pay a modest monthly fee via GitHub Sponsors — a middle path between traditional OSS and going fully commercial.
- 2025-04-07
WiX v6.0.0 available
FireGiant announces the release of WiX Toolset v6.0.0. The source code remains open source under the Microsoft Reciprocal License, but v6 is the first release to enforce the Open Source Maintenance Fee (OSMF): revenue-generating organizations are expected to sponsor the wixtoolset GitHub organization to fund ongoing maintenance.