You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/wix/index.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ In general, packages you build with WiX will work on Windows 7 or later. Code th
35
35
36
36
### Building packages with WiX
37
37
38
-
To use WiX as a .NET tool or as an MSBuild SDK via `dotnet build`, you must have a .NET 6 SDK installed. [See its system requirements](https://learn.microsoft.com/en-us/dotnet/core/install/windows?tabs=net60#supported-releases) and [download here](https://learn.microsoft.com/en-us/dotnet/core/install/windows?tabs=net60).
38
+
To use WiX as a .NET tool or as an MSBuild SDK via `dotnet build`, you must have a .NET SDK installed. [See its system requirements](https://learn.microsoft.com/en-us/dotnet/core/install/windows#supported-releases) and [download here](https://learn.microsoft.com/en-us/dotnet/core/install/windows).
39
39
40
40
To use WiX as an MSBuild SDK via `msbuild`, you must have [.NET Framework 4.7.2 or later installed](https://learn.microsoft.com/en-us/dotnet/framework/get-started/system-requirements). WiX runs on ARM64 systems as ARM64
Copy file name to clipboardExpand all lines: src/content/docs/wix/releasenotes.md
+35Lines changed: 35 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -10,18 +10,53 @@ WiX v6 is the second annual release since WiX v4. WiX v6 continues in the tradit
10
10
11
11
| Issue | Description |
12
12
| ----- | ----------- |
13
+
|[1520](https://github.com/wixtoolset/issues/issues/1520)| Address a **16**-year-old feature request to support more stores for SSL certificates. |
14
+
|[2691](https://github.com/wixtoolset/issues/issues/2691)| Address a **14**-year-old WixUI prettiness bug. |
15
+
|[7622](https://github.com/wixtoolset/issues/issues/7622)| Adds support "normal," non-SNI SSL certificates in http.sys. |
13
16
|[8101](https://github.com/wixtoolset/issues/issues/8101)| Add PerUserProgramFilesFolder standard directory for per-user packages and use it as the root of the default INSTALLFOLDER. |
17
+
|[8135](https://github.com/wixtoolset/issues/issues/8135)| Fixes a bug in WixInternalUIBootstrapperApplication so now the dialogs appear as buttons on the taskbar. |
14
18
|[8577](https://github.com/wixtoolset/issues/issues/8577)| Create local and domain user groups. In WiX v5 and before, you could _reference_ existing groups |
15
19
|[8584](https://github.com/wixtoolset/issues/issues/8584)| Replace upgrade code GUIDs with human-readable strings. The `Package` and `Bundle` elements now have an `Id` attribute that turns a human-readable string into the equivalent of an upgrade code GUID. You need to provide a value that identifies the "product family," just like it were an old-school upgrade code GUID. But `WixToolset.CommandLineTools.Package` is certainly easier to think about than `{2e85dc76-769f-46d2-82a7-46cb3a0c9d50}`, I think you'd agree. |
16
20
|[8663](https://github.com/wixtoolset/issues/issues/8663)| Allow component GUIDs for registry keys to be compatible with those created in WiX v3. Something we discovered while helping a FireGiant customer is that there's a scenario where a generated component GUID for a registry value changed in WiX v4. That same thing happened in WiX v3 (for different reasons), which is why the `-bcgg` (backward-compatible GUID generation) command-line switch was born. Well, now it's back, if you need to maintain the generated v3 GUID. |
21
+
|[8685](https://github.com/wixtoolset/issues/issues/8685)| Uses the new MSTest executable test runner and MSBuild traversal projects to build more WiX code in parallel. Faster builds make happy devs, especially when their name is Bob. |
17
22
|[8718](https://github.com/wixtoolset/issues/issues/8718), [8580](https://github.com/wixtoolset/issues/issues/8580)| Reduce the use of custom actions in WixUI to minimize the [amount of extra work necessary to work around platform-specific custom actions](https://docs.firegiant.com/wix/fourthree/faqs/#converting-custom-wixui-dialog-sets). The custom action to print the EULA—for those who not only _read_ the EULA but print a copy for their records—was entirely replaced by built-in MSI functionality. Similarly, the "extra" checking on paths done by custom action is now done with built-in functionality, though you can opt in to the old functionality using `ExtendedPathValidation="yes"` on the `WixUI` element. |
23
+
|[8882](https://github.com/wixtoolset/issues/issues/8882), [8939](https://github.com/wixtoolset/issues/issues/8939)| Use a different approach to construct the default feature and add components to it. |
18
24
|[8913](https://github.com/wixtoolset/issues/issues/8913)| Using Heat now shows a deprecation warning. It's still present and works with WiX v6, mostly by nature of the WiX v6 language not changing. But we plan to remove Heat in WiX v7, so this serves as eviction notice. |https://github.com/wixtoolset/issues/issues/|
19
25
|[8914](https://github.com/wixtoolset/issues/issues/8914)| Lock files extracted from Burn bundles as additional mitigation against attacks. No protection is perfect but locking files as read-only helps prevent malware from overwriting temporary files used during bundle installation. |
0 commit comments