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.

<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

Reply via email to