Re: [WiX-users] Can we control registration of Components from a COM DLL

2010-06-12 Thread Bob Arnson
On 6/8/2010 1:47 AM, vijay chander wrote:
 Here i'm trying to attain functionality through COM DLL which would be
 similar to installation using the following command:
 msiexec /i sampleInstaller.msi PROPNAME=1 /qb

http://www.joyofsetup.com/2007/05/30/feature-conditions-and-ui/

-- 
sig://boB
http://joyofsetup.com/


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Odd ProcessComponents behavior in an upgrade

2010-06-12 Thread Bob Arnson
On 6/11/2010 4:05 PM, Alan Sinclair wrote:
 Unavoidably in AppV2.MSI Myfile.inf has moved to a new component, CompB,
 with new GUID.


That violates component rules, so all bets are off. 
http://msdn.microsoft.com/en-us/library/aa367849%28VS.85%29.aspx

-- 
sig://boB
http://joyofsetup.com/


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Am I doing something wrong, or is this a bug?

2010-06-12 Thread Bob Arnson
On 6/8/2010 12:20 PM, bpackard wrote:
 embedded, the other may not be. When the Package is set to Compressed=yes
 the external file cannot be found - the msi expects it to be in the
 SourceRoot, even though it is supposed to be in a subordinate folder.

That's how MSI works with loose files in an otherwise-compressed package.

-- 
sig://boB
http://joyofsetup.com/


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Candle is ignoring preprocessor arguments

2010-06-12 Thread Bob Arnson
On 6/8/2010 6:22 PM, Adam Langley wrote:
 C:\Program Files\Windows Installer XML v3\bin\candle.exe 
 -dTasks=D:\TFSBuild\Temp\Product\Installers_v1.0_Trunk\Sources\Tasks\


Put quotes around the entire -d argument.

-- 
sig://boB
http://joyofsetup.com/


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WiX 3.0 error with .net 4

2010-06-12 Thread Bob Arnson
On 6/9/2010 9:04 PM, John Ketchpaw wrote:
 Using this config file,


WiX v3.5 contains an updated .config file for SfxCA.

-- 
sig://boB
http://joyofsetup.com/


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Detect and Repair when WIX MSI, MST and cab in self extracting EXE

2010-06-12 Thread greenaj
I created an MSI package, MST (transfor), and .cab file using WIX 3.0.  I 
bundle all three up in a NullSoft self extracting exe that when called by a 
bootstrapper, extracts the files to a directory on disk and calls the msi using 
msiexec and setting the TRANSFORMS property to the .MST file.

Question is, after the product is installed, what will happing during a normal 
Detect and Repair if the user deletes a key file and then launches the app 
using the application short cut?  The ResourceSource action, I know, will look 
for the SourceDir value containing the original MSI.  These files are gone 
after the NullSoft executable runs the install and cleans up.

I understand InstallShield using the SETUPEXEDIR property for dealing with 
this, but you do other vendors that wrap their MSI's in a setup.exe type file.  
Also, my NullSoft exe is not named setup.exe, its is the MSI file name 
replaced with an EXE extention.

Any help would be greatly appreciated.

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Question about register .net COM object

2010-06-12 Thread Elfe Xu
Hi,

I'm trying a CA
CustomAction Id=RegT  ExeCommand=blablabla\RegAsm.exe T.dll 
Execute=immediate /
and found it can only success if I make the CA run after InstallFinalized. 
Otherwise, it will fail.

I think the right way is to use Class element, but I just cannot make the 
result the same as I execute regasm.exe.
Here is my trying:
  Component Id =TestComponent 
Guid=D75C79A1-83C9-467D-89FB-4B7E081401CE Win64=$(var.USEWIN64) 
File  Id=TestCOM Assembly=.net Name=Test.dll DiskId=1 
Source=..\..\TestCOM.dll KeyPath=yes
  Class Id=CE13T9EC-3BE1-4292-89C4-243ERF42967B
 Description=test com
 ThreadingModel=both
 Context=InprocServer32
ProgId Id=MyTestCOM /
  /Class
/File
  /Component
I just cannot find way to set lots of other stuffs, like
Implemented Categories with value {62C8FE65-4EBB-45e7-B440-6E39B2CDBF29}
The Assembly, Class, RuntimeVersion under InprocServer32.
I want to set the ForeignServer with mscoree.dll, but wix says it cannot be 
used under File.

I guess I might doing totally wrong. Anyone can give me a sample of how to do 
the register?

Another question is: when I want to add the .net assembly into wix project 
reference, why I get the error of Test.dll could not be added. Please make 
sure that the file is accessible, and that it is a valid WiX reference. 
Because of this failure, I can only add the file by the relevant path. Not sure 
if it is a cause of the register failure.

Thanks,
-Elfe
--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Question about register .net COM object

2010-06-12 Thread greenaj
I saw regasm in the CustomAction element, so I am assuming  that this is a .NET 
assembly exposing COM objects.  Use the /reg option to create a .reg file 
containing all of the registry settings.  Then you can manually enter these 
values into the Wix projects.  

Wix has some tools that can automate some of this, but check the results and 
make sure what you have is correct.  What you may need to do is run a CA to set 
the Codebase value in the registry for the installed COM .NET assembly..  The 
value regasm puts in the .REG file will not be value for the install.

Regards,
greenaj


 Elfe Xu elf...@microsoft.com wrote: 
 Hi,
 
 I'm trying a CA
 CustomAction Id=RegT  ExeCommand=blablabla\RegAsm.exe T.dll 
 Execute=immediate /
 and found it can only success if I make the CA run after InstallFinalized. 
 Otherwise, it will fail.
 
 I think the right way is to use Class element, but I just cannot make the 
 result the same as I execute regasm.exe.
 Here is my trying:
   Component Id =TestComponent 
 Guid=D75C79A1-83C9-467D-89FB-4B7E081401CE Win64=$(var.USEWIN64) 
 File  Id=TestCOM Assembly=.net Name=Test.dll DiskId=1 
 Source=..\..\TestCOM.dll KeyPath=yes
   Class Id=CE13T9EC-3BE1-4292-89C4-243ERF42967B
  Description=test com
  ThreadingModel=both
  Context=InprocServer32
 ProgId Id=MyTestCOM /
   /Class
 /File
   /Component
 I just cannot find way to set lots of other stuffs, like
 Implemented Categories with value {62C8FE65-4EBB-45e7-B440-6E39B2CDBF29}
 The Assembly, Class, RuntimeVersion under InprocServer32.
 I want to set the ForeignServer with mscoree.dll, but wix says it cannot be 
 used under File.
 
 I guess I might doing totally wrong. Anyone can give me a sample of how to do 
 the register?
 
 Another question is: when I want to add the .net assembly into wix project 
 reference, why I get the error of Test.dll could not be added. Please make 
 sure that the file is accessible, and that it is a valid WiX reference. 
 Because of this failure, I can only add the file by the relevant path. Not 
 sure if it is a cause of the register failure.
 
 Thanks,
 -Elfe
 --
 ThinkGeek and WIRED's GeekDad team up for the Ultimate 
 GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
 lucky parental unit.  See the prize list and enter to win: 
 http://p.sf.net/sfu/thinkgeek-promo
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Question about register .net COM object

2010-06-12 Thread Rob Mensching
SelfReg is bad. Use heat.exe to capture the registration in .wxs form.

On Sat, Jun 12, 2010 at 10:58 AM, Elfe Xu elf...@microsoft.com wrote:

 Hi,

 I'm trying a CA
 CustomAction Id=RegT  ExeCommand=blablabla\RegAsm.exe T.dll
 Execute=immediate /
 and found it can only success if I make the CA run after InstallFinalized.
 Otherwise, it will fail.

 I think the right way is to use Class element, but I just cannot make the
 result the same as I execute regasm.exe.
 Here is my trying:
  Component Id =TestComponent
 Guid=D75C79A1-83C9-467D-89FB-4B7E081401CE Win64=$(var.USEWIN64) 
File  Id=TestCOM Assembly=.net Name=Test.dll DiskId=1
 Source=..\..\TestCOM.dll KeyPath=yes
  Class Id=CE13T9EC-3BE1-4292-89C4-243ERF42967B
 Description=test com
 ThreadingModel=both
 Context=InprocServer32
ProgId Id=MyTestCOM /
  /Class
/File
  /Component
 I just cannot find way to set lots of other stuffs, like
 Implemented Categories with value {62C8FE65-4EBB-45e7-B440-6E39B2CDBF29}
 The Assembly, Class, RuntimeVersion under InprocServer32.
 I want to set the ForeignServer with mscoree.dll, but wix says it cannot be
 used under File.

 I guess I might doing totally wrong. Anyone can give me a sample of how to
 do the register?

 Another question is: when I want to add the .net assembly into wix project
 reference, why I get the error of Test.dll could not be added. Please make
 sure that the file is accessible, and that it is a valid WiX reference.
 Because of this failure, I can only add the file by the relevant path. Not
 sure if it is a cause of the register failure.

 Thanks,
 -Elfe

 --
 ThinkGeek and WIRED's GeekDad team up for the Ultimate
 GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the
 lucky parental unit.  See the prize list and enter to win:
 http://p.sf.net/sfu/thinkgeek-promo
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users




-- 
virtually, Rob Mensching - http://RobMensching.com LLC
--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Detect and Repair when WIX MSI, MST and cab in self extracting EXE

2010-06-12 Thread Rob Mensching
Yeah, don't do that. In Burn we do a lot of work to make sure the MSI is
cached in a consistent location so that repair, patching, etc. all work
correctly.

On Sat, Jun 12, 2010 at 8:48 AM, gree...@cox.net wrote:

 I created an MSI package, MST (transfor), and .cab file using WIX 3.0.  I
 bundle all three up in a NullSoft self extracting exe that when called by a
 bootstrapper, extracts the files to a directory on disk and calls the msi
 using msiexec and setting the TRANSFORMS property to the .MST file.

 Question is, after the product is installed, what will happing during a
 normal Detect and Repair if the user deletes a key file and then launches
 the app using the application short cut?  The ResourceSource action, I know,
 will look for the SourceDir value containing the original MSI.  These files
 are gone after the NullSoft executable runs the install and cleans up.

 I understand InstallShield using the SETUPEXEDIR property for dealing with
 this, but you do other vendors that wrap their MSI's in a setup.exe type
 file.  Also, my NullSoft exe is not named setup.exe, its is the MSI file
 name replaced with an EXE extention.

 Any help would be greatly appreciated.


 --
 ThinkGeek and WIRED's GeekDad team up for the Ultimate
 GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the
 lucky parental unit.  See the prize list and enter to win:
 http://p.sf.net/sfu/thinkgeek-promo
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users




-- 
virtually, Rob Mensching - http://RobMensching.com LLC
--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to integrate into TFS if the wix project has managed CA written with DTF?

2010-06-12 Thread Rob Mensching
There is documentation in the WiX.chm about a lot of this. Did you read it?
If so, is there a way we can improve it?

On Fri, Jun 11, 2010 at 10:55 PM, Elfe Xu elf...@microsoft.com wrote:

 Hi all,

 I've learnt that to make a wix project work with TFS, I need to edit the
 .wixproj file, and also the TFSBuild project by adding ConfigurationToBuild
 to Mixed Platforms.
 I also learnt that if I have a C# library project, and I want to use it as
 custom action library, I need to run MakeSfxCA to package the binary. Now my
 question is: how to put them together? What should I do to integrate my wix
 project into TFS, if it has CustomAction that refer to a C# library project?

 I tried to write a CA project with the C# CA template in VS, and find it
 does the package automatically. I checked for the wix and cs project files,
 but find nothing. Seems it has some magic inside.

 Anyone can provide some instructions for me to follow?

 Thanks!
 -Elfe

 --
 ThinkGeek and WIRED's GeekDad team up for the Ultimate
 GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the
 lucky parental unit.  See the prize list and enter to win:
 http://p.sf.net/sfu/thinkgeek-promo
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users




-- 
virtually, Rob Mensching - http://RobMensching.com LLC
--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to integrate into TFS if the wix project has managed CA written with DTF?

2010-06-12 Thread Blair
The magic inside is the following line at the bottom of the csproj file
(AFTER the line that imports the Microsoft.CSharp.targets file):
  Import Project=$(WixCATargetsPath) /

That line requires the following properties and items be set in your csproj
file:
CustomAction.config must be included as a Content item in an item group.
WixCATargetsPath must be a property defined either in the csproj file or
otherwise defined for MSBuild when it runs your file and must be the path to
the Wix.CA.targets file.

-Original Message-
From: Elfe Xu [mailto:elf...@microsoft.com] 
Sent: Friday, June 11, 2010 10:56 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] How to integrate into TFS if the wix project has
managed CA written with DTF?

Hi all,

I've learnt that to make a wix project work with TFS, I need to edit the
.wixproj file, and also the TFSBuild project by adding ConfigurationToBuild
to Mixed Platforms.
I also learnt that if I have a C# library project, and I want to use it as
custom action library, I need to run MakeSfxCA to package the binary. Now my
question is: how to put them together? What should I do to integrate my wix
project into TFS, if it has CustomAction that refer to a C# library project?

I tried to write a CA project with the C# CA template in VS, and find it
does the package automatically. I checked for the wix and cs project files,
but find nothing. Seems it has some magic inside.

Anyone can provide some instructions for me to follow?

Thanks!
-Elfe

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Detect and Repair when WIX MSI, MST and cab in self extracting EXE

2010-06-12 Thread greenaj
Thanks, I will need to learn about Burn, I see the name of of the utility alot. 
 I now need to learn what it actuall dows.  I am however using Wix 3.0 and will 
need to see if Burn is a 3.5 utility.

Regards,
Aris

 Rob Mensching r...@robmensching.com wrote: 
 Yeah, don't do that. In Burn we do a lot of work to make sure the MSI is
 cached in a consistent location so that repair, patching, etc. all work
 correctly.
 
 On Sat, Jun 12, 2010 at 8:48 AM, gree...@cox.net wrote:
 
  I created an MSI package, MST (transfor), and .cab file using WIX 3.0.  I
  bundle all three up in a NullSoft self extracting exe that when called by a
  bootstrapper, extracts the files to a directory on disk and calls the msi
  using msiexec and setting the TRANSFORMS property to the .MST file.
 
  Question is, after the product is installed, what will happing during a
  normal Detect and Repair if the user deletes a key file and then launches
  the app using the application short cut?  The ResourceSource action, I know,
  will look for the SourceDir value containing the original MSI.  These files
  are gone after the NullSoft executable runs the install and cleans up.
 
  I understand InstallShield using the SETUPEXEDIR property for dealing with
  this, but you do other vendors that wrap their MSI's in a setup.exe type
  file.  Also, my NullSoft exe is not named setup.exe, its is the MSI file
  name replaced with an EXE extention.
 
  Any help would be greatly appreciated.
 
 
  --
  ThinkGeek and WIRED's GeekDad team up for the Ultimate
  GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the
  lucky parental unit.  See the prize list and enter to win:
  http://p.sf.net/sfu/thinkgeek-promo
  ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users
 
 
 
 
 -- 
 virtually, Rob Mensching - http://RobMensching.com LLC
 --
 ThinkGeek and WIRED's GeekDad team up for the Ultimate 
 GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
 lucky parental unit.  See the prize list and enter to win: 
 http://p.sf.net/sfu/thinkgeek-promo
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Is Burn Ready For Primetime? - Re: Detect and Repair when WIX MSI, MST and cab in self extracting EXE

2010-06-12 Thread greenaj
I should have had this in my previous message.  Where is the Burn 
documentation?  It is not in the Wix 3.5 package, at least I can't find it 
after doing an Administrative install if Wix3.5.msi (DONT FORGET TO SET 
TARGETDIR HERE).  

Is Burn ready for primetime?  My client is currently on the stable 3.0 release. 
 Can Burn be obtained and used alongside Wix 3.0?  Also, we need to bundle the 
.MSI, MST, and cabinet into a single EXE self extractor.  We want to be able to 
download and install these as single files.  Can burn package files into a 
self-extracting exe?

Maybe this is not doable.  Some of the .MSI's are large and I would had to have 
to extract to a temp or program data folder and leave the big package lying 
around for the slim change the user might goof up their installation and 
trigger a detect and repair.

 gree...@cox.net wrote: 
 Thanks, I will need to learn about Burn, I see the name of of the utility 
 alot.  I now need to learn what it actuall dows.  I am however using Wix 3.0 
 and will need to see if Burn is a 3.5 utility.
 
 Regards,
 Aris
 
  Rob Mensching r...@robmensching.com wrote: 
  Yeah, don't do that. In Burn we do a lot of work to make sure the MSI is
  cached in a consistent location so that repair, patching, etc. all work
  correctly.
  
  On Sat, Jun 12, 2010 at 8:48 AM, gree...@cox.net wrote:
  
   I created an MSI package, MST (transfor), and .cab file using WIX 3.0.  I
   bundle all three up in a NullSoft self extracting exe that when called by 
   a
   bootstrapper, extracts the files to a directory on disk and calls the msi
   using msiexec and setting the TRANSFORMS property to the .MST file.
  
   Question is, after the product is installed, what will happing during a
   normal Detect and Repair if the user deletes a key file and then 
   launches
   the app using the application short cut?  The ResourceSource action, I 
   know,
   will look for the SourceDir value containing the original MSI.  These 
   files
   are gone after the NullSoft executable runs the install and cleans up.
  
   I understand InstallShield using the SETUPEXEDIR property for dealing with
   this, but you do other vendors that wrap their MSI's in a setup.exe type
   file.  Also, my NullSoft exe is not named setup.exe, its is the MSI file
   name replaced with an EXE extention.
  
   Any help would be greatly appreciated.
  
  
   --
   ThinkGeek and WIRED's GeekDad team up for the Ultimate
   GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the
   lucky parental unit.  See the prize list and enter to win:
   http://p.sf.net/sfu/thinkgeek-promo
   ___
   WiX-users mailing list
   WiX-users@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wix-users
  
  
  
  
  -- 
  virtually, Rob Mensching - http://RobMensching.com LLC
  --
  ThinkGeek and WIRED's GeekDad team up for the Ultimate 
  GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
  lucky parental unit.  See the prize list and enter to win: 
  http://p.sf.net/sfu/thinkgeek-promo
  ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users
 
 
 --
 ThinkGeek and WIRED's GeekDad team up for the Ultimate 
 GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
 lucky parental unit.  See the prize list and enter to win: 
 http://p.sf.net/sfu/thinkgeek-promo
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to integrate into TFS if the wix project has managed CA written with DTF?

2010-06-12 Thread Elfe Xu

Thanks Blair.
I checked the wix.ca.targets. Seems when using this in our TFS build
environment, I need to do a little change of the path values, because the
wix on build machine is not installed, but by copying files into the public
folder.

@Rob: yes, the articles in wix document are very clear and helps me to
integrate wix project into tfs. What it doesn't have, is for C# CA projects.
I guess it's better for the DTF document to add this.
-- 
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-integrate-into-TFS-if-the-wix-project-has-managed-CA-written-with-DTF-tp5170887p5173308.html
Sent from the wix-users mailing list archive at Nabble.com.

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Question about register .net COM object

2010-06-12 Thread Elfe Xu

Yeah, the heat.exe works fine! thanks!
-- 
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Question-about-register-net-COM-object-tp5172220p5173310.html
Sent from the wix-users mailing list archive at Nabble.com.

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users