diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-05-06 14:42:01 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-05-11 19:11:19 -0500 |
commit | a91c413750b354ba6975be9d427787b13664b750 (patch) | |
tree | 230c04174a3f01e15fbed26fc70a4101276c595f /src/test/burn/TestData/BasicFunctionalityTests | |
parent | 8c27fbe1bc8a6d83859aead2105d6d528c307726 (diff) | |
download | wix-a91c413750b354ba6975be9d427787b13664b750.tar.gz wix-a91c413750b354ba6975be9d427787b13664b750.tar.bz2 wix-a91c413750b354ba6975be9d427787b13664b750.zip |
Add tests for WixBA.
Diffstat (limited to 'src/test/burn/TestData/BasicFunctionalityTests')
-rw-r--r-- | src/test/burn/TestData/BasicFunctionalityTests/BundleD/BundleD.wixproj | 20 | ||||
-rw-r--r-- | src/test/burn/TestData/BasicFunctionalityTests/BundleD_x64/BundleD_x64.wixproj | 21 |
2 files changed, 41 insertions, 0 deletions
diff --git a/src/test/burn/TestData/BasicFunctionalityTests/BundleD/BundleD.wixproj b/src/test/burn/TestData/BasicFunctionalityTests/BundleD/BundleD.wixproj new file mode 100644 index 00000000..a2af1aa5 --- /dev/null +++ b/src/test/burn/TestData/BasicFunctionalityTests/BundleD/BundleD.wixproj | |||
@@ -0,0 +1,20 @@ | |||
1 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
2 | <Project Sdk="WixToolset.Sdk"> | ||
3 | <PropertyGroup> | ||
4 | <OutputType>Bundle</OutputType> | ||
5 | <BA>WixBA</BA> | ||
6 | <UpgradeCode>{2557AA80-E432-48BF-BF01-DD27DD1BD291}</UpgradeCode> | ||
7 | </PropertyGroup> | ||
8 | <ItemGroup> | ||
9 | <Compile Include="..\..\Templates\Bundle.wxs" Link="Bundle.wxs" /> | ||
10 | <Compile Include="..\BundleA\BundleA.wxs" Link="BundleD.wxs" /> | ||
11 | </ItemGroup> | ||
12 | <ItemGroup> | ||
13 | <ProjectReference Include="..\PackageA\PackageA.wixproj" /> | ||
14 | <ProjectReference Include="..\..\TestBA\TestBAWixlib\testbawixlib.wixproj" /> | ||
15 | </ItemGroup> | ||
16 | <ItemGroup> | ||
17 | <PackageReference Include="WixToolset.Bal.wixext" /> | ||
18 | <PackageReference Include="WixToolset.NetFx.wixext" /> | ||
19 | </ItemGroup> | ||
20 | </Project> \ No newline at end of file | ||
diff --git a/src/test/burn/TestData/BasicFunctionalityTests/BundleD_x64/BundleD_x64.wixproj b/src/test/burn/TestData/BasicFunctionalityTests/BundleD_x64/BundleD_x64.wixproj new file mode 100644 index 00000000..338d523d --- /dev/null +++ b/src/test/burn/TestData/BasicFunctionalityTests/BundleD_x64/BundleD_x64.wixproj | |||
@@ -0,0 +1,21 @@ | |||
1 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
2 | <Project Sdk="WixToolset.Sdk"> | ||
3 | <PropertyGroup> | ||
4 | <OutputType>Bundle</OutputType> | ||
5 | <BA>WixBAdnc_x64</BA> | ||
6 | <UpgradeCode>{62E3DFA4-6849-44F0-93A1-C8F60DBB76E3}</UpgradeCode> | ||
7 | <InstallerPlatform>x64</InstallerPlatform> | ||
8 | </PropertyGroup> | ||
9 | <ItemGroup> | ||
10 | <Compile Include="..\..\Templates\Bundle.wxs" Link="Bundle.wxs" /> | ||
11 | <Compile Include="..\BundleA_x64\BundleA_x64.wxs" Link="BundleD_x64.wxs" /> | ||
12 | </ItemGroup> | ||
13 | <ItemGroup> | ||
14 | <ProjectReference Include="..\PackageA_x64\PackageA_x64.wixproj" /> | ||
15 | <ProjectReference Include="..\..\TestBA\TestBAWixlib_x64\testbawixlib_x64.wixproj" /> | ||
16 | </ItemGroup> | ||
17 | <ItemGroup> | ||
18 | <PackageReference Include="WixToolset.Bal.wixext" /> | ||
19 | <PackageReference Include="WixToolset.NetFx.wixext" /> | ||
20 | </ItemGroup> | ||
21 | </Project> \ No newline at end of file | ||