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

2013-02-08 Thread Christopher Painter
. From: "j2associates" Sent: Friday, February 08, 2013 8:54 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] How can I set/change the generated msi name from within product.wxs Christopher Painter-2 wrote > Now when you call MSBUILD you pass in /p:WiXProductVersi

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

2013-02-08 Thread Hoover, Jacob
users@lists.sourceforge.net Subject: Re: [WiX-users] How can I set/change the generated msi name from within product.wxs 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 > pro

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 st

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 ProductVersio