Torchok

Results 55 comments of Torchok

morning, it looks like you want to add files as wildcard from path. To do so, you have to use wildcard by addiing files. There is sample in examples of...

morning , i had same issue long time ago. If filename is too big and in wxs comes addtionally guid for file , somehow i got error. in one of...

morning, we had same issue and found our solution in BA Installer. One of our workers share code ```csharp [CustomAction] public static ActionResult ExtractFile(Session session) { session.Log("Begin ExtractFile"); // Retrieve...

thanks for quick answer, oleg. Any idea, how add cancel installation message if conditions are not fullfilled ? something like shell.customdesriptionerror = "Application is not installed or versions are equal...

found it on Load Event and just tested. ```csharp try { var appKey = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\application").GetValue("ProgramDir").ToString(); if (string.IsNullOrEmpty(appKey)) { e.ManagedUI.Shell.CustomErrorDescription = "Programm not installed."; e.ManagedUI.Shell.ErrorDetected = true; } e.Session["INSTALLDIR"] = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\applicationRegs").GetValue("ProgramDir").ToString();...

i think i run in issue. Created new wix Sharp v3 - Custom UI Project. Wait for nuget restore and rebuild project , without changes. Msi is created, but if...

i checked my originall project for creation msi. i had added ```csharp public static class CustomActions { [CustomAction] public static ActionResult SetWVToolDir(Session session) { try { //x64 - 64 Bit...

thanks, again. I just checked. VS 2022 doesnt show any Updates for WixSharp Template, i intalled latest template version on my work machine. ![Screenshot 2024-09-19 144902](https://github.com/user-attachments/assets/6fe127dd-f55d-400f-83b0-f2e684bbf537) is this somehow related...

morning, i tested recent, 30 min ago, workaround works. Many thanks.

Hiho, dont know if helps, but try to create your own public property with Upper letters and set from dialog. ```csharp session["MYTIMEVALUE"] = textbox1.Text; ``` in your project you can...