Customizing setup with WixSharp.Core #1925
-
|
Hey everyone, Any ideas? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
WixSharp.Core has limited support since MSI and WiX do not support .NET Core. Thus, WixSharp has to compile the CA assemblies into the native with AOT option. If you want to replace the license content, then you need to assign However, if you want to implement a custom UI sequence, then you would want to have a look at these samples: https://github.com/oleg-shilo/wixsharp/blob/master/Source/src/NET-Core/Sample/CustomUI-WinForms But in any case, I feel like the difficulties of dealing with .NET Core outweigh the benefits significantly. |
Beta Was this translation helpful? Give feedback.
-
|
Thanks. I was dreading that this is the case. |
Beta Was this translation helpful? Give feedback.
WixSharp.Core has limited support since MSI and WiX do not support .NET Core. Thus, WixSharp has to compile the CA assemblies into the native with AOT option.
If you want to replace the license content, then you need to assign
project.LicenceFile. See attached example.Setup1.zip
However, if you want to implement a custom UI sequence, then you would want to have a look at these samples: https://github.com/oleg-shilo/wixsharp/blob/master/Source/src/NET-Core/Sample/CustomUI-WinForms
But in any case, I feel like the difficulties of dealing with .NET Core outweigh the benefits significantly.