-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Load bundle variables from uninstall key
- Loading branch information
Showing
13 changed files
with
137 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
<WixToolsetVersion Condition=" '$(WixToolsetVersion)' == '' ">5.0.2</WixToolsetVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageVersion Include="WixToolset.UI.wixext" Version="$(WixToolsetVersion)"/> | ||
<PackageVersion Include="WixToolset.Bal.wixext" Version="$(WixToolsetVersion)"/> | ||
<PackageVersion Include="CommandLineParser" Version="2.9.1" /> | ||
|
||
<PackageVersion Include="TidyBuild" Version="1.5.2"/> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal"> | ||
<Bundle Name="TestBundle" Manufacturer="Panel::Software" Version="$(FullVersion)" UpgradeCode="d01a7a13-e3f1-457f-ba5a-2a8819942bfd"> | ||
<BootstrapperApplication> | ||
<bal:WixStandardBootstrapperApplication LicenseUrl="https://www.example.com/license" Theme="hyperlinkLicense" /> | ||
</BootstrapperApplication> | ||
|
||
<Variable Name="InstallFolder" Value="[ProgramFiles6432Folder]\!(bind.packageName.TestPackage.msi)" Type="formatted" Persisted="yes"/> | ||
|
||
<Chain> | ||
<MsiPackage SourceFile="$(TestPackage.TargetPath)"> | ||
<MsiProperty Name="INSTALLFOLDER" Value="[InstallFolder]"/> | ||
</MsiPackage> | ||
</Chain> | ||
|
||
</Bundle> | ||
</Wix> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<Project Sdk="WixToolset.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Bundle</OutputType> | ||
<DefineConstants>$(DefineConstants);FullVersion=$(FullVersion)</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\TestPackage\TestPackage.wixproj"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="WixToolset.Bal.wixext"/> | ||
<PackageReference Include="TidyBuild"/> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
<Fragment> | ||
<StandardDirectory Id="ProgramFiles6432Folder"> | ||
<Directory Id="INSTALLFOLDER" Name="!(bind.Property.Manufacturer) !(bind.Property.ProductName)" /> | ||
<Directory Id="INSTALLFOLDER" Name="!(bind.Property.ProductName)" /> | ||
</StandardDirectory> | ||
</Fragment> | ||
</Wix> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
<Project Sdk="WixToolset.Sdk/5.0.0"> | ||
<Project Sdk="WixToolset.Sdk"> | ||
<PropertyGroup> | ||
<DefineConstants>$(DefineConstants);FullVersion=$(FullVersion)</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="WixToolset.UI.wixext" Version="5.0.0"/> | ||
<PackageReference Include="WixToolset.UI.wixext"/> | ||
<PackageReference Include="TidyBuild"/> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<Project Sdk="Microsoft.Build.Traversal"> | ||
<PropertyGroup> | ||
<TraversalGlobalProperties>SolutionDir=$(MSBuildThisFileDirectory);Configuration=$(Configuration);BuildProjectReferences=false</TraversalGlobalProperties> | ||
<CustomBeforeTraversalProps>$(MSBuildThisFileDirectory)Directory.Build.props</CustomBeforeTraversalProps> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="MsiZapEx\MsiZapEx.csproj" Properties="Platform=Any CPU;GeneratePackageOnBuild=true" Targets="Build" BuildInParallel="false"/> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(BuildSample)' != '' And $(BuildSample)"> | ||
<ProjectReference Include="TestPackage\TestPackage.wixproj" Properties="Platform=x64" Targets="Build" BuildInParallel="false"/> | ||
<ProjectReference Include="TestBundle\TestBundle.wixproj" Properties="Platform=x64" Targets="Build" BuildInParallel="false"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="TidyBuild" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"msbuild-sdks": { | ||
"WixToolset.Sdk": "5.0.2", | ||
"Microsoft.Build.Traversal": "4.1.0" | ||
} | ||
} |