New Post: How can best I allow edits on a config file for Windows Service App...
Hello all, Checking for the best process for allowing the config file to be edited after the files are on the client system and before the app is installed as a Windows Service. Thanks in advance, Bob
View ArticleNew Post: How can best I allow edits on a config file for Windows Service App...
Typically you would need to find the step name which corresponds to the stage you are interested in and schedule a custom action for this step. In your custom actions you modify the the config file....
View ArticleNew Post: How can best I allow edits on a config file for Windows Service App...
Thanks for your reply Oleg. Can you please suggest which example for adding a winform dialog is up to date as I see them using the older syntax ands just wanted to build it the best way. Thanks again, Bob
View ArticleNew Post: How can best I allow edits on a config file for Windows Service App...
The best way is to create a project from the VS template (you'll need to add VS "WixSharp project templates" extension). The freshly created project (after NuGet packages are restored) will always have...
View ArticleNew Post: Adding a subfolder with files from a wildcard
Hello Oleg, I am trying to add a subfolder and multiple files using a wildcard but no luck: var project = new ManagedProject("ConvertDrone32Bit", new Dir(@"%ProgramFiles%\InFlow Technology...
View ArticleNew Post: Adding a subfolder with files from a wildcard
DirFiles agregates only the top level directory files to allow semi-manual aggregation with higher precision. If you need to aggregate the whole 'deep' content of the folders including sub-folders you...
View ArticleNew Post: IIS websites
I am using wixsharp to create websites in IIS... The behavior I'd like to see (and I cannot seem to achieve) is a website that is made with the app pool I configure. Right now a website is made with...
View ArticleNew Post: How can best I allow edits on a config file for Windows Service App...
Hello Oleg, As I am working to add a custom UI dialog, I did per your suggest start a new project with the Custom UI template where I do see the CustomDialog class and also where it is added to the...
View ArticleNew Post: How to resolve issue with background image
Hello Oleg, With the default background graphics, there is text on the right of the initial form but when I add my png with a transparent background, the text does not appear. Per the example, I use...
View ArticleNew Post: How can best I allow edits on a config file for Windows Service App...
Your dialog (CustomDialog) will be invoked at runtime after you navigate forward from the WelcomeDialig. You don't invoke it directly. Wix# runime will do it.The sample dialog that is generated as part...
View ArticleNew Post: How to resolve issue with background image
Thank you. I see. Yes this is a problem. It's easy to fix but it is a problem nevertheless. The images that are used in standard dialogs of the ManagedUI are of two types: banner and background. Banner...
View ArticleNew Post: How to resolve issue with background image
Can you please log it as an issue and place the link to this discussion. Txs
View ArticleNew Post: IIS websites
The solution may be related to the Issue#113new IISVirtualDir { Name = "MyWebApp", AppName = "Test", WebSite = new WebSite("DefaultWebSite", "[IIS_SITE_ADDRESS]:[IIS_SITE_PORT]", "[IIS_SITE_NAME]"),...
View ArticleNew Post: How to resolve issue with background image
I actually created the issue on your behalf: https://wixsharp.codeplex.com/workitem/116
View ArticleNew Post: WixUI_InstallDir dir location
Hello, i have a setup like thisproject.Dirs = new Dir[] { new Dir(@"ADMINET") { Dirs = new Dir[] { new Dir("ServidorADMINET_X", this.ObtenerArchivos("ServidorADMINET") ), new Dir("ConsolaADMINET_X",...
View ArticleNew Post: WixUI_InstallDir dir location
Hi there, Just before we dive in I want to let you know that you can use Wix# XML extensions for simplifying your XML manipulations. Thus your XML event can also be implemented like this:...
View ArticleNew Post: WixUI_InstallDir dir location
Ok, thanks. Meanwhile the nuget release ships I will use the xml manipulation code. Thanks for the simplified code.
View ArticleNew Post: Referencing System.Net.Http
Hi Oleg, I'm trying to reference System.Net.Http.Formatting.dll right now eventhough I have the package icrosoft.AspNet.WebApi.Client.5.2.3, that also add System.Net.Http.Formatting somewhere in the...
View Article