Hi,
I'm using MSBuild to create Bootstraper for my MSI installation which 
checks and installs .Net Framework if necessary. The whole installation 
is then packed in 7z SFX package.

I've updated the 7z.SFX module to inslude Visual Style manifest, but I'm 
not able to add manifest to the Bootstrapper created by MSBuild.

The only solution I've found is to manulay edit the resulting Setup.exe, 
after it is created :( Is there any better and automatizable way to add 
the manifest to the Boostrapper?

My bootstrapper MSBuild project:
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"; 
ToolsVersion="3.5">

  <ItemGroup>
    <BootstrapperFile Include="Microsoft.Net.Framework.2.0">
      <ProductName>.NET Framework 2.0 (x86)</ProductName>
    </BootstrapperFile>
    <BootstrapperFile Include="Microsoft.Windows.Installer.3.1">
      <ProductName>Windows Installer 3.1</ProductName>
    </BootstrapperFile>
  </ItemGroup>

  <Target Name="Bootstrapper">
    <GenerateBootstrapper
    ApplicationFile="install.msi"
    ApplicationName="Application v1.0"
    BootstrapperItems="@(BootstrapperFile)"
    Culture="en"
    CopyComponents="True"
    Validate="True"
    OutputPath=".\Out" />
  </Target>
</Project>

Thank you
Ondrej Zarevucky

------------------------------------------------------------------------------
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to