For example, within an msbuild package's product.xml file, I have the definition... can I use the "HomeSite" way of specifying prerequisities within an Advanced Installer project?
How would the below map to an Advanced Installer prerequisite definition? Meaning, if I want the installer to download this file from Microsoft's web site, how would I specify that within Advanced Installer?
<Product
xmlns="http://schemas.microsoft.com/developer/ ... otstrapper"
ProductCode="Microsoft.VSTORuntime.2.0">
<RelatedProducts>
<DependsOnProduct Code="Microsoft.Net.Framework.2.0" />
<DependsOnProduct Code="Microsoft.Office.PIA.2003" />
</RelatedProducts>
<!-- Defines the list of files to be copied on build. -->
<PackageFiles CopyAllPackageFiles="false">
<PackageFile Name="VSTOR.exe" HomeSite="VSTORExe" PublicKey="..."/>
</PackageFiles>
<InstallChecks>
<MsiProductCheck Property="VSTORuntimeInstalled" Product="{388E4B09-3E71-4649-8921-F44A3A2954A7}"/>
</InstallChecks>