[WiX-users] How can I set/change the generated msi name from within product.wxs

2013-02-08 Thread j2associates
Hello all, We have a requirement that the generated msi include the project name and version (e.g. MyAppInstaller v1.0.1.msi). The OutputName tag in the wixproj file contains the generated msi name. Is there a way to update the OutputName tag within the product.wxs file? I would like to set it to

Re: [WiX-users] How can I set/change the generated msi name from within product.wxs

2013-02-08 Thread Christopher Painter
The wixproj can pass constants to be used in the wxs, not the other way around. You can edit the wixproj by hand and use MSBuild properties such as: In the OutName property element = ProductName_$(WiXProductVersion) Then later in the DefineConstants property element you can say

Re: [WiX-users] How can I set/change the generated msi name from within product.wxs

2013-02-08 Thread j2associates
Christopher Painter-2 wrote Now when you call MSBUILD you pass in /p:WiXProductVersion=1.2.3 and you'll get an MSI with that in the name and that version in the property table. Would I need to do some kind of custom action for the part referenced above? Are you talking about a manual step

Re: [WiX-users] How can I set/change the generated msi name from within product.wxs

2013-02-08 Thread Hoover, Jacob
Where will you be getting your version information from? You could use a MSBuild task to read it from an ini and set both a MSBuild property and a Wix Define. If you want the version information to be set via your primary exe you could look at

[WiX-users] WiX GenerateBootrstraper no longer works after upgrading

2013-02-08 Thread zambak zambak
I asked this same question on SOhttp://stackoverflow.com/q/14740596/481904 I had a solution with 2 projects in Visual Studio 2010 with .NET 4. One project is a shared library (Widget) and the other is a WiX setup project (Setup). WiX project was created for v3.6 I upgraded the solution and the

[WiX-users] Helpful tip for debugging your BootstrapperApplication

2013-02-08 Thread ptr
hey all I just thought I would share with everyone something I that I wrote that I find saves me lot of time. If you are developing a customer .NET bootstrapper you periodically need to attach and debug your BootstrapperApplication. One can easily solve this by having a line

[WiX-users] Create MSI package for Website

2013-02-08 Thread chennam
Hi I am new to Wix, I have created a MSI package having single file (dll or exe) by providing the file source in product.wxs. But if needed to create folder structure of website as a MSI package which was compiled in release mode then how can we configure it in product.wxs? File Source=C:\SCBU

Re: [WiX-users] Create MSI package for Website

2013-02-08 Thread Peter Shirtcliffe
See the Heat tool in the Wix help file. -Original Message- From: chennam [mailto:chatrapathi.chen...@gmail.com] Sent: 08 February 2013 16:17 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Create MSI package for Website Hi I am new to Wix, I have created a MSI package having

Re: [WiX-users] How can I set/change the generated msi name from within product.wxs

2013-02-08 Thread Christopher Painter
How do you call MSBuild? Do you use TFS or CruiseControl? Maybe a .BAT file? Personally, I use TFS 2012 and in my workflow I use a Versioning activity that takes care of my AssemblyInfo.cs files and passing the property into the WiX MSBuild solutions.

Re: [WiX-users] WiX GenerateBootrstraper no longer works after upgrading

2013-02-08 Thread David Watson
Have you downloaded the files it says are missing, they are not there by default (at least not on my machine)? Also my @path has no trailing \ -Original Message- From: zambak zambak [mailto:zam...@gmail.com] Sent: 08 February 2013 15:36 To: wix-users@lists.sourceforge.net Subject:

Re: [WiX-users] WiX GenerateBootrstraper no longer works after upgrading

2013-02-08 Thread zambak zambak
David @Path without trailing \ made no difference. As for the files - I didn't have to download them before, but I am willing to try it... Once downloaded where should I place them? On Fri, Feb 8, 2013 at 12:25 PM, David Watson dwat...@sdl.com wrote: Have you downloaded the files it says

Re: [WiX-users] How do to configure a Windows service to Restart the Service upon failure?

2013-02-08 Thread Marty Offe
YES!!! Using the util:ServiceConfig element WORKED!! THANK YOU! :-) Marty Offe -Original Message- From: Nick Ramirez [mailto:nickra...@hotmail.com] Sent: Monday, December 17, 2012 9:03 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] How do to configure a Windows

Re: [WiX-users] WiX GenerateBootrstraper no longer works after upgrading

2013-02-08 Thread zambak zambak
OKI downloaded the files and now it works. One thing to note is to Unblock the files after you download them (right click- Properties - Unblock) Files go to C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\Bootstrapper\Packages\package_name\ folder One thing I am still showing yellow