Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
chrpai committed Sep 24, 2023
2 parents 2ec5a18 + 89f357b commit 6e95156
Show file tree
Hide file tree
Showing 40 changed files with 681 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</BootstrapperApplication>
<Chain>
<PackageGroupRef Id="NetFx48WebAsPrereq"/>
<MsiPackage Id="$globalsafeprojectname$" SourceFile="$(var.$globalsafeprojectname$Setup.TargetPath)" />
<MsiPackage Id="$globalsafeprojectname$" SourceFile="$(var.$globalsafeprojectname$Package.TargetPath)" />
</Chain>
</Bundle>
</Wix>
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
<Content Include="Resources\splash.bmp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\$globalsafeprojectname$Setup\$globalsafeprojectname$Setup.wixproj">
<Name>$globalsafeprojectname$Setup</Name>
<ProjectReference Include="..\$globalsafeprojectname$Package\$globalsafeprojectname$Package.wixproj">
<Name>$globalsafeprojectname$Package</Name>
<Project>{298d4875-b9ce-4cdc-be4a-c3573226727e}</Project>
<Private>True</Private>
<DoNotHarvest>True</DoNotHarvest>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<ProjectTypeTag>HeatWave</ProjectTypeTag>
</TemplateData>
<TemplateContent>
<Project File="IsWiXBootstrapper.wixproj" TargetFileName="$safeprojectname$Bootstrapper.wixproj" ReplaceParameters="true">
<Project File="IsWiXBundle.wixproj" TargetFileName="$safeprojectname$Bundle.wixproj" ReplaceParameters="true">
<ProjectItem ReplaceParameters="true" OpenInEditor="true" TargetFileName="Bundle.wxs">Bundle.wxs</ProjectItem>
<ProjectItem ReplaceParameters="false" OpenInEditor="false" TargetFileName="Resources\EULA.rtf">EULA.rtf</ProjectItem>
<ProjectItem ReplaceParameters="false" OpenInEditor="false" TargetFileName="Resources\Icon.png">Icon.png</ProjectItem>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<VSTemplate Version="3.0.0" Type="ProjectGroup" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005">
<TemplateData>
<Name>IsWiX Bootstrapper (WiX v4)</Name>
<TemplateID>IsWiX.BootstrapperProject</TemplateID>
<Description>A multiple project solution accelerator for creating a WiX bootstrapper (.exe) file and Windows installation package (.msi) file.</Description>
<Name>IsWiX Bundle - InternalUI (WiX v4)</Name>
<TemplateID>IsWiX.InternalUIBundleProject</TemplateID>
<Description>A multiple project solution accelerator for creating a WiX InternalUI Bundle (.exe) file and Windows installation package (.msi) file. InternalUI delegates the UI to the MSI.</Description>
<Icon>IsWiX.ico</Icon>
<ProjectType>HeatWave</ProjectType>
<SortOrder>20</SortOrder>
Expand All @@ -20,8 +20,8 @@
</WizardExtension>
<WizardData>
<Settings>
<MappedProjectTemplate name="$projectname$Setup" path="$projectname$Setup" template="SetupProjectTemplate\IsWixProject.vstemplate" />
<MappedProjectTemplate name="$projectname$Bootstrapper" path="$projectname$Bootstrapper" template="BootstrapperProjectTemplate\IsWixBootstrapperProject.vstemplate" />
<MappedProjectTemplate name="$projectname$Package" path="$projectname$Package" template="PackageProjectTemplate\IsWixProject.vstemplate" />
<MappedProjectTemplate name="$projectname$Bundle" path="$projectname$Bundle" template="BundleProjectTemplate\IsWixBundleProject.vstemplate" />
</Settings>
</WizardData>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<LanguageTag>WiX</LanguageTag>
</TemplateData>
<TemplateContent>
<Project File="IsWiXSetupProject.wixproj" TargetFileName="$safeprojectname$.wixproj" ReplaceParameters="true">
<Project File="IsWiXPackageProject.wixproj" TargetFileName="$safeprojectname$Package.wixproj" ReplaceParameters="true">
<ProjectItem ReplaceParameters="true" OpenInEditor="true" TargetFileName="Product.wxs">Product.wxs</ProjectItem>
<ProjectItem ReplaceParameters="true" OpenInEditor="true" TargetFileName="$globalsafeprojectname$Files.wxs">Files.wxs</ProjectItem>
<ProjectItem ReplaceParameters="true" OpenInEditor="false" TargetFileName="IISMeta.wxs">IISMeta.wxs</ProjectItem>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal">
<Bundle Name="$globalsafeprojectname$" Version="$(var.MSIProductVersion)" Manufacturer="$globalsafeprojectname$" UpgradeCode="$guid3$">
<BootstrapperApplication>
<bal:WixStandardBootstrapperApplication LicenseFile="Resources\EULA.rtf" LogoFile="Resources\Icon.png" Theme="rtfLicense" ThemeFile="Resources\RtfTheme.xml" LocalizationFile="Resources\RtfTheme.wxl" />
</BootstrapperApplication>
<Variable Name="InstallFolder" bal:Overridable="yes" Type="formatted" Value="[ProgramFiles6432Folder]\My Company\$globalsafeprojectname$"/>
<Chain>
<PackageGroupRef Id="NetFx48WebAsPrereq"/>
<MsiPackage Id="$globalsafeprojectname$" SourceFile="$(var.$globalsafeprojectname$Package.TargetPath)">
<MsiProperty Name="INSTALLLOCATION" Value="[InstallFolder]"/>
</MsiPackage>
</Chain>
</Bundle>
</Wix>
Loading

0 comments on commit 6e95156

Please sign in to comment.