Axel MINET

Results 16 comments of Axel MINET

Sorry for the late reply, I put the issue on hold. Validation works if I add a null style to hide cell validation: ```csharp Validation.ErrorTemplate" Value="{x:Null}" ``` ```csharp ``` Before:...

What should I do ? This : ```c# session["REINSTALLMODE"] = "o"; ``` ```c# public void Repair() { if (session != null) { session["REINSTALL"] = "ALL"; session["REINSTALLMODE"] = "o"; session["MODIFY_ACTION"] =...

The default is "omus". ```c# // // Résumé : // The REINSTALLMODE property is a string that contains letters specifying the type // of reinstall to perform. Options are case-insensitive...

Hello @oleg-shilo Having a problem with Wix4 for the %AppData% or %CommonAppData% folder (https://github.com/oleg-shilo/wixsharp/issues/1503), I am currently using the wix3 WPF template. Here are the 2 screens on Wix4 of...

Can you try with %AppData% and project.InstallScope = InstallScope.perUser with version 2.6.1 and wix4? Does it work?

@oleg-shilo , The repair still does not work with %AppData%. Please test the project. (https://github.com/oleg-shilo/wixsharp/issues/1515#issuecomment-2088217398)

It seems to work by adding this: ```c# AutoElements.DisableAutoUserProfileRegistry = true; ``` I no longer need to add this in MaintenanceTypeDialogModel : ```c# session["REINSTALL"] = "ALL"; session["MODIFY_ACTION"] = "Repair"; ```...

Allow me to reopen the issue. I subscribed to the AfterInstall event. In this event I have to create a file if (e.IsInstalling || e.IsRepairing) = true and delete the...

I have ModifyAction = "Repair" in the Load and BeforeInstall events. So I have to use the BeforeInstall event to perform the processing of adding or deleting a file?