Re: [WiX-users] Howto override variables from a file using MSBuild/VS2012

2013-10-08 Thread Matt O'Connell
OK. Does the easy way to do it involve TFS?

On 08/10/2013 01:03, Blair Murri wrote:
 Yes, that can be done. In fact, I did it last month. Someone knowledgeable 
 with MSBuild would be able to set that up in a short time. In fact, that 
 other project could build all or any combination of lang/bitness you want in 
 one invocation.
   
 The rest (of us) buy the book 
 (http://www.amazon.com/gp/product/0735626286?ie=UTF8tag=sedodream-20linkCode=xm2camp=1789creativeASIN=0735626286)
  or read the blog by the author (http://sedodream.com/default.aspx).
   
 I do short off-site contracts if you need it in a hurry.
   
 Date: Mon, 7 Oct 2013 22:38:52 +0100
 From: techsupport...@gmail.com
 To: wix-users@lists.sourceforge.net
 Subject: [WiX-users] Howto override variables from a file using  
 MSBuild/VS2012

 Hi,
 I've recently switched from using build cmd files to trying to use
 votive/VS2012 and have run in to a slight issue trying to do something that
 was a lot easier when it was all in cmd files.

 (Not sure if this is a msbuild or WiX issue):I have a WiX Setup project in
 vs2012 (WiX3.7) that I already has eight different language/bittage build
 configurations. I want to override variables for source paths without
 having yet another build configuration or having to check a file out, edit
 the default value and then build. This is mainly so someone, probably not
 me, can build the existing installer with a different set of
 resources/content. So I thought I might be able to have another project in
 the same solution that could set these variables and then build the 'main'
 installer project where I have a 'ifndef variable' which will override if
 the variable exists already (and so if you just call the main installer
 wixproj you get the defaults). Is this feasible, or is there a better way
 to do this?

 Thanks
 Matt O'Connell
 --
 October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from
 the latest Intel processors and coprocessors. See abstracts and register 
 http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
   
 --
 October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from
 the latest Intel processors and coprocessors. See abstracts and register 
 http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Howto override variables from a file using MSBuild/VS2012

2013-10-08 Thread Bruce Cran
On 10/8/2013 1:03 AM, Blair Murri wrote:
 The rest (of us) buy the book 
 (http://www.amazon.com/gp/product/0735626286?ie=UTF8tag=sedodream-20linkCode=xm2camp=1789creativeASIN=0735626286)

Note that the link is for the first edition, not the second.

-- 
Bruce Cran

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Howto override variables from a file using MSBuild/VS2012

2013-10-08 Thread Blair Murri
Sorry, I grabbed the link from the author's website. I didn't search deeply for 
the latest edition (despite the fact that the edition I own is the second).
 
 Date: Tue, 8 Oct 2013 14:08:45 +0100
 From: br...@cran.org.uk
 To: wix-users@lists.sourceforge.net
 Subject: Re: [WiX-users] Howto override variables from a file using   
 MSBuild/VS2012
 
 On 10/8/2013 1:03 AM, Blair Murri wrote:
  The rest (of us) buy the book 
  (http://www.amazon.com/gp/product/0735626286?ie=UTF8tag=sedodream-20linkCode=xm2camp=1789creativeASIN=0735626286)
 
 Note that the link is for the first edition, not the second.
 
 -- 
 Bruce Cran
 
 --
 October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
 the latest Intel processors and coprocessors. See abstracts and register 
 http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Howto override variables from a file using MSBuild/VS2012

2013-10-07 Thread Blair Murri
Yes, that can be done. In fact, I did it last month. Someone knowledgeable with 
MSBuild would be able to set that up in a short time. In fact, that other 
project could build all or any combination of lang/bitness you want in one 
invocation.
 
The rest (of us) buy the book 
(http://www.amazon.com/gp/product/0735626286?ie=UTF8tag=sedodream-20linkCode=xm2camp=1789creativeASIN=0735626286)
 or read the blog by the author (http://sedodream.com/default.aspx).
 
I do short off-site contracts if you need it in a hurry.
 
 Date: Mon, 7 Oct 2013 22:38:52 +0100
 From: techsupport...@gmail.com
 To: wix-users@lists.sourceforge.net
 Subject: [WiX-users] Howto override variables from a file using   
 MSBuild/VS2012
 
 Hi,
 I've recently switched from using build cmd files to trying to use
 votive/VS2012 and have run in to a slight issue trying to do something that
 was a lot easier when it was all in cmd files.
 
 (Not sure if this is a msbuild or WiX issue):I have a WiX Setup project in
 vs2012 (WiX3.7) that I already has eight different language/bittage build
 configurations. I want to override variables for source paths without
 having yet another build configuration or having to check a file out, edit
 the default value and then build. This is mainly so someone, probably not
 me, can build the existing installer with a different set of
 resources/content. So I thought I might be able to have another project in
 the same solution that could set these variables and then build the 'main'
 installer project where I have a 'ifndef variable' which will override if
 the variable exists already (and so if you just call the main installer
 wixproj you get the defaults). Is this feasible, or is there a better way
 to do this?
 
 Thanks
 Matt O'Connell
 --
 October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
 the latest Intel processors and coprocessors. See abstracts and register 
 http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
  
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users