New Post: Create IIS Website without child WebApp
I was also looking for that feature: install a website without virtual directory. The last Oleg's answer helped a lot. Since I have only one website and would like to remove all virtual dirs the...
View ArticleNew Post: Error in WixSharp_Load_Action
Good day. Can someone help with this. 2 win 10X64, on first all installations correct, on another always same error ActionStart: Действие 11:39:53: WixSharp_Load_Action. Info: Начало действия 11:39:53:...
View ArticleNew Post: Error in WixSharp_Load_Action
So, it's happens if net framework 3.5 is not installed on the system. Is any way to rebuild installation so it's can use only 4.5 or higher ?
View ArticleNew Post: Error in WixSharp_Load_Action
Have a look at the extension method SetNetFxPrerequisite. This is how it's done in the CustomUIDIalog sample for .NET3.5: project.SetNetFxPrerequisite("NETFRAMEWORK35='#1'", "Please install .NET 3.5...
View ArticleNew Post: Error in WixSharp_Load_Action
Thanks for reply, but question, is any way to create msi whom don't need framework 3.5 for work (but can work with 4.5 or higher) Core of Win# falls with error if 3.5 isn't in system"Info: Calling...
View ArticleNew Post: Thank you
Hi Oleg, I wanted to thank you on behalf of everyone on my team. We had to create a complex setup and everything we tried a lot of different approaches but Wix# was the only thing that has given us...
View ArticleNew Post: Error in WixSharp_Load_Action
Running .NET 3.5 compiled assembly on OS with only .NET 4.5 installed is a common deployment challenge and this is my understanding that you can always solve it by modifying the app.config file. In...
View ArticleNew Post: Thank you
Hi Dax, I am really thrilled to know that my work gives someone sanity!! Bringing some order in the wild-wild world of MSI was exactly the reason behind Wix#. I know too well that pain you were going...
View ArticleNew Post: Error in WixSharp_Load_Action
It's look like Wix problemhttps://github.com/wixtoolset/issues/issues/3872 They used Net Framework 3.5 in their projects and i'm don't found any way to modify *.config
View ArticleNew Post: Error in WixSharp_Load_Action
One more question Using WixSharp UI DialogVar project = new ManagedProject(SetupFileName, …. new Property(new Id(“Id1”), “ 123 ”), …. New ExeFileShortcut (new Id(“id2”),”name”,”[Id1]”,””) Why if I...
View ArticleNew Post: Error in WixSharp_Load_Action
.NET v3.5 dependency While indeed it seems that even WiX v4.0 has that problem unsolved I am not sure it's that simple as WiX internal bug. I have tested the "CustomUISequence" sample as it is on a...
View ArticleNew Post: Conditional navigation in CustomUI
I've adapted the CustomMSIDialog project for my installer. During the 'activation' dialog, when the user clicks next, I'd like to conditionally navigate to the next dialog. So, if activation = 1 then...
View ArticleNew Post: Need help! On configuring progress dialog
Hello, I have used the default template MangedUI. I want to configure the progress dialog to have some of my custom logic and show the status of it as text and progress bar. But I am finding it...
View ArticleNew Post: Error in WixSharp_Load_Action
.NET v3.5 dependency Thanks for advice to check another API. It's was falling at code, that don't used in project but just was there, and has reference to dll that uses 3.5
View ArticleNew Post: Need help! On configuring progress dialog
Aaah I cannot delete this. But I was able to solve my problem. Basically I was doing it wrong. I should not touch Progress dialg instead I should do my custome logic in the main program.cs suing events.
View ArticleNew Post: Restarting Windows service and conditional launch
I have a Windows service which I install and start using WixSharp. This works fine. The service is extensible in that additional functionality can be registered with it through another WixSharp...
View ArticleNew Post: Conditional navigation in CustomUI
You chosen the most complicated UI model MSI native UI :) Because of this you are loosing any opportunity to use imperative expressions (e.g. C# code) and you will need to resort to declarative (XML)...
View ArticleNew Post: Restarting Windows service and conditional launch
As far as I know neither MSI nor WiX offer functionality for controlling external services (not the ones being installed). Though I can be wrong. However Wix# allows easy control of any OS component...
View ArticleNew Post: Changing icon in top left corner of forms
HI, I have used managed ui while creating the installer. i can see the icon i m trying to put on top left corner in code but once i compile and run the msi icon changes in dialogs. Template i m using...
View Article