You're confusing me.  By "tfs", do you mean Team Foundation Server?  If
so, how does it not support MSBuild?


> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:wix-users-
> [EMAIL PROTECTED] On Behalf Of jcafaro10
> Sent: Monday, July 30, 2007 12:39 PM
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] bootstrapper?
> 
> 
> 
> 
> jcafaro10 wrote:
> >
> > Figured it out.  This works provided there are product .xml files
> where I
> > need them to be.  Problem is I'll have to generate this manually b/c
> this
> > is for msbuild not wix and tfs doesn't support msbuild apparently
> >
> > Edit: Actually I was thinking what if I just had an action in my
> wixfile
> > that ran the command line argument necessary to create the
> bootstrapper?
> > That should be ok right?  I know I use the ExeCommand to do command
> line
> > stuff but I need a command to change to the right directory and one
> to use
> > the command...How do I use more than one execommand in an action?
> >
> > <Project
xmlns="http://schemas.microsoft.com/developer/msbuild/2003";>
> >   <ItemGroup>
> >     <BootstrapperFile Include="Microsoft.Net.Framework.2.0">
> >       <ProductName>Microsoft .NET Framework</ProductName>
> >     </BootstrapperFile>
> >     <BootstrapperFile Include="Microsoft.SQL.Server.Desktop.Engine">
> >           <ProductName>Microsoft SQL Server</ProductName>
> >     </BootstrapperFile>
> >     <BootstrapperFile Include="iTech.Logger">
> >           <ProductName>iTech</ProductName>
> >     </BootstrapperFile>
> >   </ItemGroup>
> >
> >   <Target Name="Bootstrapper">
> >     <GenerateBootstrapper
> >       ApplicationFile="WixProject1.msi"
> >       ApplicationName="Wix Sample"
> >       BootstrapperItems="@(BootstrapperFile)"
> >       OutputPath=".\bin\Debug"
> >       ComponentsLocation="Absolute"
> >       ComponentsUrl="put my file path here"
> >       Culture="en"
> >     />
> >   </Target>
> > </Project>
> >
> >
> >
> > John Vottero wrote:
> >>
> >>> I know that to install .NET I need to use a bootstrapper so I made
> a
> >>> .proj
> >>> file and put this in it, but I need to add other things to the
> >>> bootstrapper
> >>> that won't install from the msi like sql server desktop engine and
> >>> itechlogger but I'm not sure how to do that.
> >>>
> >>
> >> SQL Server Express can be installed by adding another
> <BootstrapperFile>
> >> to your <ItemGroup>.
> >>
> >> If you google "BootstrapperFile", you will find information on
> creating
> >> your own bootstrapper files so, worst case, you would have to
create
> a
> >> Bootstrapper file for itechlogger.
> >>
> >>
> >>> <Project
> xmlns="http://schemas.microsoft.com/developer/msbuild/2003";>
> >>>   <ItemGroup>
> >>>     <BootstrapperFile Include="Microsoft.Net.Framework.2.0">
> >>>       <ProductName>Microsoft .NET Framework 2.0</ProductName>
> >>>     </BootstrapperFile>
> >>>   </ItemGroup>
> >>>
> >>>   <Target Name="Bootstrapper">
> >>>     <GenerateBootstrapper
> >>>       ApplicationFile="WixProject1.msi"
> >>>       ApplicationName="Wix Sample"
> >>>       BootstrapperItems="@(BootstrapperFile)"
> >>>       OutputPath=".\bin\Debug"
> >>>       ComponentsLocation="HomeSite"
> >>>       Culture="en"
> >>>     />
> >>>   </Target>
> >>> </Project>
> >>> --
> >>> View this message in context: http://www.nabble.com/bootstrapper--
> >>> tf4171003.html#a11866122
> >>> Sent from the wix-users mailing list archive at Nabble.com.
> >>>
> >>>
> >>>
> >>
--------------------------------------------------------------------
> ---
> >>> --
> >>> This SF.net email is sponsored by: Splunk Inc.
> >>> Still grepping through log files to find problems?  Stop.
> >>> Now Search log events and configuration files using AJAX and a
> >> browser.
> >>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> >>> _______________________________________________
> >>> WiX-users mailing list
> >>> WiX-users@lists.sourceforge.net
> >>> https://lists.sourceforge.net/lists/listinfo/wix-users
> >>
> >>
> >>
--------------------------------------------------------------------
> -----
> >> This SF.net email is sponsored by: Splunk Inc.
> >> Still grepping through log files to find problems?  Stop.
> >> Now Search log events and configuration files using AJAX and a
> browser.
> >> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> >> _______________________________________________
> >> WiX-users mailing list
> >> WiX-users@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/wix-users
> >>
> >>
> >
> >
> 
> --
> View this message in context: http://www.nabble.com/bootstrapper--
> tf4171003.html#a11866776
> Sent from the wix-users mailing list archive at Nabble.com.
> 
> 
>
-----------------------------------------------------------------------
> --
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a
browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to