Re: [WiX-users] DTF in MSBuild

2008-05-24 Thread Christopher Karper
/05/23/custom-action-project-templates.aspx > > > > *From:* [EMAIL PROTECTED] [mailto: > [EMAIL PROTECTED] *On Behalf Of *Christopher > Painter > *Sent:* Tuesday, May 20, 2008 6:14 PM > *To:* Christopher Karper; [EMAIL PROTECTED] > *Cc:* wix-users@lists.sourceforge.ne

Re: [WiX-users] DTF in MSBuild

2008-05-24 Thread Jason Ginchereau
-users@lists.sourceforge.net Subject: Re: [WiX-users] DTF in MSBuild I wanted to keep this abstracted and loosely coupled. It's all prototype/play work right now and I don't want to add dependencies to the build box that I can't resolve by just pulling some third party component

Re: [WiX-users] DTF in MSBuild

2008-05-20 Thread Christopher Painter
I wanted to keep this abstracted and loosely coupled. It's all prototype/play work right now and I don't want to add dependencies to the build box that I can't resolve by just pulling some third party components out of source. I'm sure when the day comes that wix3.msi has all the right

Re: [WiX-users] DTF in MSBuild

2008-05-20 Thread Christopher Karper
It looks like you're copying in all the DTF support files into a subdir as well. I was trying to just use the preinstalled locs. To each their own. It'd be pretty easy to make an msbuild action out of MakeSfxCA since it's all managed code anyway. I'm sure it'll come along soon enough. Chris

Re: [WiX-users] DTF in MSBuild

2008-05-20 Thread Christopher Painter
I took the lazy way out for now with a postbuild event since Jason has said proper templates will be coming. I decided to add DTF to the filename for uniqueness. My goal was to isolate the dependencies and wire it up as a standard C# class project without any particularly special plumbing.

Re: [WiX-users] DTF in MSBuild

2008-05-20 Thread Christopher Karper
Oh yeah, also note, this depends on you having a file named CustomAction.config in your project. I great improvement would be to have it check for the file's existence before including it. :-) YMMV. Chris On Tue, May 20, 2008 at 5:49 PM, Christopher Karper < [EMAIL PROTECTED]> wrote: > I've

[WiX-users] DTF in MSBuild

2008-05-20 Thread Christopher Karper
I've got the DTF wrapper bit running as a simple exec task by adding the following to the end of my project file for the CA dll. It uses the project output and appends an _Sfx to it to mark it as the wrapped version. It's brute force, and it steals from the wix.targets file Pay special atten