From c258b72508f1b25a56e5d3ee3df08650ba1cbe36 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Wed, 4 Feb 2026 20:47:04 -0500 Subject: Support dual-purpose packages in Burn. Fixes https://github.com/wixtoolset/issues/issues/8958 --- .../MultipleBundlePackagesWithRemoteBundle.wxs | 2 +- .../AllPmouBundle/AllPmouBundleTestBA.wixproj | 7 +++++++ .../AllPmouBundle/AllPmouBundleWixStdBA.wixproj | 7 +++++++ .../AllPmouBundle/Bundle.props | 14 ++++++++++++++ .../ConfigurableScopeTests/AllPmouBundle/Bundle.wxs | 19 +++++++++++++++++++ .../AllPuomBundle/AllPuomBundleTestBA.wixproj | 7 +++++++ .../AllPuomBundle/AllPuomBundleWixStdBA.wixproj | 7 +++++++ .../AllPuomBundle/Bundle.props | 14 ++++++++++++++ .../ConfigurableScopeTests/AllPuomBundle/Bundle.wxs | 19 +++++++++++++++++++ .../PerMachineBundle/Bundle.wxs | 11 +++++++++++ .../PerMachineBundle/PerMachineBundle.wixproj | 11 +++++++++++ .../PerMachinePkg/PerMachinePkg.wixproj | 2 ++ .../PerMachinePkg/product.wxs | 6 ++++++ .../ConfigurableScopeTests/PerUserBundle/Bundle.wxs | 11 +++++++++++ .../PerUserBundle/PerUserBundle.wixproj | 11 +++++++++++ .../PerUserPkg/PerUserPkg.wixproj | 2 ++ .../ConfigurableScopeTests/PerUserPkg/product.wxs | 6 ++++++ .../PmPmouBundle/Bundle.props | 15 +++++++++++++++ .../ConfigurableScopeTests/PmPmouBundle/Bundle.wxs | 20 ++++++++++++++++++++ .../PmPmouBundle/PmPmouBundleTestBA.wixproj | 7 +++++++ .../PmPuPmouBundle/Bundle.props | 17 +++++++++++++++++ .../PmPuPmouBundle/Bundle.wxs | 21 +++++++++++++++++++++ .../PmPuPmouBundle/PmPuPmouBundleTestBA.wixproj | 7 +++++++ .../PmPuPuomBundle/Bundle.props | 17 +++++++++++++++++ .../PmPuPuomBundle/Bundle.wxs | 21 +++++++++++++++++++++ .../PmPuPuomBundle/PmPuPuomBundleTestBA.wixproj | 7 +++++++ .../PmPuomBundle/Bundle.props | 15 +++++++++++++++ .../ConfigurableScopeTests/PmPuomBundle/Bundle.wxs | 20 ++++++++++++++++++++ .../PmPuomBundle/PmPuomBundleTestBA.wixproj | 7 +++++++ .../PmouPkg1/PmouPkg1.wixproj | 2 ++ .../ConfigurableScopeTests/PmouPkg1/product.wxs | 6 ++++++ .../PmouPkg2/PmouPkg2.wixproj | 2 ++ .../ConfigurableScopeTests/PmouPkg2/product.wxs | 6 ++++++ .../PuPmouBundle/Bundle.props | 16 ++++++++++++++++ .../ConfigurableScopeTests/PuPmouBundle/Bundle.wxs | 20 ++++++++++++++++++++ .../PuPmouBundle/PuPmouBundleTestBA.wixproj | 7 +++++++ .../PuPuomBundle/Bundle.props | 16 ++++++++++++++++ .../ConfigurableScopeTests/PuPuomBundle/Bundle.wxs | 20 ++++++++++++++++++++ .../PuPuomBundle/PuPuomBundleTestBA.wixproj | 7 +++++++ .../PuomBundlePackage/Bundle.wxs | 11 +++++++++++ .../PuomBundlePackage/PuomBundlePackage.wixproj | 11 +++++++++++ .../PuomPkg1/PuomPkg1.wixproj | 2 ++ .../ConfigurableScopeTests/PuomPkg1/product.wxs | 6 ++++++ .../PuomPkg2/PuomPkg2.wixproj | 2 ++ .../ConfigurableScopeTests/PuomPkg2/product.wxs | 6 ++++++ 45 files changed, 469 insertions(+), 1 deletion(-) create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/AllPmouBundleTestBA.wixproj create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/AllPmouBundleWixStdBA.wixproj create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/Bundle.props create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/Bundle.wxs create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/AllPuomBundleTestBA.wixproj create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/AllPuomBundleWixStdBA.wixproj create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/Bundle.props create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/Bundle.wxs create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PerMachineBundle/Bundle.wxs create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PerMachineBundle/PerMachineBundle.wixproj create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PerMachinePkg/PerMachinePkg.wixproj create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PerMachinePkg/product.wxs create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PerUserBundle/Bundle.wxs create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PerUserBundle/PerUserBundle.wixproj create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PerUserPkg/PerUserPkg.wixproj create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PerUserPkg/product.wxs create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PmPmouBundle/Bundle.props create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PmPmouBundle/Bundle.wxs create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PmPmouBundle/PmPmouBundleTestBA.wixproj create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PmPuPmouBundle/Bundle.props create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PmPuPmouBundle/Bundle.wxs create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PmPuPmouBundle/PmPuPmouBundleTestBA.wixproj create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PmPuPuomBundle/Bundle.props create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PmPuPuomBundle/Bundle.wxs create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PmPuPuomBundle/PmPuPuomBundleTestBA.wixproj create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PmPuomBundle/Bundle.props create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PmPuomBundle/Bundle.wxs create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PmPuomBundle/PmPuomBundleTestBA.wixproj create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PmouPkg1/PmouPkg1.wixproj create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PmouPkg1/product.wxs create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PmouPkg2/PmouPkg2.wixproj create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PmouPkg2/product.wxs create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PuPmouBundle/Bundle.props create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PuPmouBundle/Bundle.wxs create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PuPmouBundle/PuPmouBundleTestBA.wixproj create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/Bundle.props create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/Bundle.wxs create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/PuPuomBundleTestBA.wixproj create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PuomBundlePackage/Bundle.wxs create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PuomBundlePackage/PuomBundlePackage.wixproj create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PuomPkg1/PuomPkg1.wixproj create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PuomPkg1/product.wxs create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PuomPkg2/PuomPkg2.wixproj create mode 100644 src/test/burn/TestData/ConfigurableScopeTests/PuomPkg2/product.wxs (limited to 'src/test/burn/TestData') diff --git a/src/test/burn/TestData/BundlePackageTests/MultipleBundlePackagesWithRemoteBundle/MultipleBundlePackagesWithRemoteBundle.wxs b/src/test/burn/TestData/BundlePackageTests/MultipleBundlePackagesWithRemoteBundle/MultipleBundlePackagesWithRemoteBundle.wxs index 0d05700f..3ff752b2 100644 --- a/src/test/burn/TestData/BundlePackageTests/MultipleBundlePackagesWithRemoteBundle/MultipleBundlePackagesWithRemoteBundle.wxs +++ b/src/test/burn/TestData/BundlePackageTests/MultipleBundlePackagesWithRemoteBundle/MultipleBundlePackagesWithRemoteBundle.wxs @@ -12,7 +12,7 @@ - + diff --git a/src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/AllPmouBundleTestBA.wixproj b/src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/AllPmouBundleTestBA.wixproj new file mode 100644 index 00000000..30d850d4 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/AllPmouBundleTestBA.wixproj @@ -0,0 +1,7 @@ + + + TestBA + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/AllPmouBundleWixStdBA.wixproj b/src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/AllPmouBundleWixStdBA.wixproj new file mode 100644 index 00000000..56db1fdc --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/AllPmouBundleWixStdBA.wixproj @@ -0,0 +1,7 @@ + + + WixStdBA + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/Bundle.props b/src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/Bundle.props new file mode 100644 index 00000000..a200a063 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/Bundle.props @@ -0,0 +1,14 @@ + + + Bundle + + + + + + + + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/Bundle.wxs b/src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/Bundle.wxs new file mode 100644 index 00000000..48708db4 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/Bundle.wxs @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/AllPuomBundleTestBA.wixproj b/src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/AllPuomBundleTestBA.wixproj new file mode 100644 index 00000000..30d850d4 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/AllPuomBundleTestBA.wixproj @@ -0,0 +1,7 @@ + + + TestBA + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/AllPuomBundleWixStdBA.wixproj b/src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/AllPuomBundleWixStdBA.wixproj new file mode 100644 index 00000000..56db1fdc --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/AllPuomBundleWixStdBA.wixproj @@ -0,0 +1,7 @@ + + + WixStdBA + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/Bundle.props b/src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/Bundle.props new file mode 100644 index 00000000..d704544c --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/Bundle.props @@ -0,0 +1,14 @@ + + + Bundle + + + + + + + + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/Bundle.wxs b/src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/Bundle.wxs new file mode 100644 index 00000000..4cb11a98 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/Bundle.wxs @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PerMachineBundle/Bundle.wxs b/src/test/burn/TestData/ConfigurableScopeTests/PerMachineBundle/Bundle.wxs new file mode 100644 index 00000000..e170667b --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PerMachineBundle/Bundle.wxs @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PerMachineBundle/PerMachineBundle.wixproj b/src/test/burn/TestData/ConfigurableScopeTests/PerMachineBundle/PerMachineBundle.wixproj new file mode 100644 index 00000000..ade65220 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PerMachineBundle/PerMachineBundle.wixproj @@ -0,0 +1,11 @@ + + + Bundle + + + + + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PerMachinePkg/PerMachinePkg.wixproj b/src/test/burn/TestData/ConfigurableScopeTests/PerMachinePkg/PerMachinePkg.wixproj new file mode 100644 index 00000000..20673927 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PerMachinePkg/PerMachinePkg.wixproj @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PerMachinePkg/product.wxs b/src/test/burn/TestData/ConfigurableScopeTests/PerMachinePkg/product.wxs new file mode 100644 index 00000000..4b14c9d2 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PerMachinePkg/product.wxs @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PerUserBundle/Bundle.wxs b/src/test/burn/TestData/ConfigurableScopeTests/PerUserBundle/Bundle.wxs new file mode 100644 index 00000000..e0a4c170 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PerUserBundle/Bundle.wxs @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PerUserBundle/PerUserBundle.wixproj b/src/test/burn/TestData/ConfigurableScopeTests/PerUserBundle/PerUserBundle.wixproj new file mode 100644 index 00000000..7af6148b --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PerUserBundle/PerUserBundle.wixproj @@ -0,0 +1,11 @@ + + + Bundle + + + + + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PerUserPkg/PerUserPkg.wixproj b/src/test/burn/TestData/ConfigurableScopeTests/PerUserPkg/PerUserPkg.wixproj new file mode 100644 index 00000000..20673927 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PerUserPkg/PerUserPkg.wixproj @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PerUserPkg/product.wxs b/src/test/burn/TestData/ConfigurableScopeTests/PerUserPkg/product.wxs new file mode 100644 index 00000000..17c25409 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PerUserPkg/product.wxs @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PmPmouBundle/Bundle.props b/src/test/burn/TestData/ConfigurableScopeTests/PmPmouBundle/Bundle.props new file mode 100644 index 00000000..9ecde613 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PmPmouBundle/Bundle.props @@ -0,0 +1,15 @@ + + + Bundle + + + + + + + + + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PmPmouBundle/Bundle.wxs b/src/test/burn/TestData/ConfigurableScopeTests/PmPmouBundle/Bundle.wxs new file mode 100644 index 00000000..ecb8571b --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PmPmouBundle/Bundle.wxs @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PmPmouBundle/PmPmouBundleTestBA.wixproj b/src/test/burn/TestData/ConfigurableScopeTests/PmPmouBundle/PmPmouBundleTestBA.wixproj new file mode 100644 index 00000000..66ad737c --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PmPmouBundle/PmPmouBundleTestBA.wixproj @@ -0,0 +1,7 @@ + + + TestBA + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PmPuPmouBundle/Bundle.props b/src/test/burn/TestData/ConfigurableScopeTests/PmPuPmouBundle/Bundle.props new file mode 100644 index 00000000..51458cdd --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PmPuPmouBundle/Bundle.props @@ -0,0 +1,17 @@ + + + Bundle + 1140 + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PmPuPmouBundle/Bundle.wxs b/src/test/burn/TestData/ConfigurableScopeTests/PmPuPmouBundle/Bundle.wxs new file mode 100644 index 00000000..64361b42 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PmPuPmouBundle/Bundle.wxs @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PmPuPmouBundle/PmPuPmouBundleTestBA.wixproj b/src/test/burn/TestData/ConfigurableScopeTests/PmPuPmouBundle/PmPuPmouBundleTestBA.wixproj new file mode 100644 index 00000000..30d850d4 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PmPuPmouBundle/PmPuPmouBundleTestBA.wixproj @@ -0,0 +1,7 @@ + + + TestBA + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PmPuPuomBundle/Bundle.props b/src/test/burn/TestData/ConfigurableScopeTests/PmPuPuomBundle/Bundle.props new file mode 100644 index 00000000..7da4792a --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PmPuPuomBundle/Bundle.props @@ -0,0 +1,17 @@ + + + Bundle + 1140 + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PmPuPuomBundle/Bundle.wxs b/src/test/burn/TestData/ConfigurableScopeTests/PmPuPuomBundle/Bundle.wxs new file mode 100644 index 00000000..4c9ce68c --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PmPuPuomBundle/Bundle.wxs @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PmPuPuomBundle/PmPuPuomBundleTestBA.wixproj b/src/test/burn/TestData/ConfigurableScopeTests/PmPuPuomBundle/PmPuPuomBundleTestBA.wixproj new file mode 100644 index 00000000..30d850d4 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PmPuPuomBundle/PmPuPuomBundleTestBA.wixproj @@ -0,0 +1,7 @@ + + + TestBA + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PmPuomBundle/Bundle.props b/src/test/burn/TestData/ConfigurableScopeTests/PmPuomBundle/Bundle.props new file mode 100644 index 00000000..9ecde613 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PmPuomBundle/Bundle.props @@ -0,0 +1,15 @@ + + + Bundle + + + + + + + + + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PmPuomBundle/Bundle.wxs b/src/test/burn/TestData/ConfigurableScopeTests/PmPuomBundle/Bundle.wxs new file mode 100644 index 00000000..7f53f09a --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PmPuomBundle/Bundle.wxs @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PmPuomBundle/PmPuomBundleTestBA.wixproj b/src/test/burn/TestData/ConfigurableScopeTests/PmPuomBundle/PmPuomBundleTestBA.wixproj new file mode 100644 index 00000000..30d850d4 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PmPuomBundle/PmPuomBundleTestBA.wixproj @@ -0,0 +1,7 @@ + + + TestBA + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PmouPkg1/PmouPkg1.wixproj b/src/test/burn/TestData/ConfigurableScopeTests/PmouPkg1/PmouPkg1.wixproj new file mode 100644 index 00000000..20673927 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PmouPkg1/PmouPkg1.wixproj @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PmouPkg1/product.wxs b/src/test/burn/TestData/ConfigurableScopeTests/PmouPkg1/product.wxs new file mode 100644 index 00000000..a41e99ca --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PmouPkg1/product.wxs @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PmouPkg2/PmouPkg2.wixproj b/src/test/burn/TestData/ConfigurableScopeTests/PmouPkg2/PmouPkg2.wixproj new file mode 100644 index 00000000..20673927 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PmouPkg2/PmouPkg2.wixproj @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PmouPkg2/product.wxs b/src/test/burn/TestData/ConfigurableScopeTests/PmouPkg2/product.wxs new file mode 100644 index 00000000..84f74769 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PmouPkg2/product.wxs @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PuPmouBundle/Bundle.props b/src/test/burn/TestData/ConfigurableScopeTests/PuPmouBundle/Bundle.props new file mode 100644 index 00000000..95acbebe --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PuPmouBundle/Bundle.props @@ -0,0 +1,16 @@ + + + Bundle + 1140 + + + + + + + + + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PuPmouBundle/Bundle.wxs b/src/test/burn/TestData/ConfigurableScopeTests/PuPmouBundle/Bundle.wxs new file mode 100644 index 00000000..70e84690 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PuPmouBundle/Bundle.wxs @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PuPmouBundle/PuPmouBundleTestBA.wixproj b/src/test/burn/TestData/ConfigurableScopeTests/PuPmouBundle/PuPmouBundleTestBA.wixproj new file mode 100644 index 00000000..30d850d4 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PuPmouBundle/PuPmouBundleTestBA.wixproj @@ -0,0 +1,7 @@ + + + TestBA + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/Bundle.props b/src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/Bundle.props new file mode 100644 index 00000000..6d0a58f1 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/Bundle.props @@ -0,0 +1,16 @@ + + + Bundle + 1140 + + + + + + + + + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/Bundle.wxs b/src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/Bundle.wxs new file mode 100644 index 00000000..6c5b6845 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/Bundle.wxs @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/PuPuomBundleTestBA.wixproj b/src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/PuPuomBundleTestBA.wixproj new file mode 100644 index 00000000..30d850d4 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/PuPuomBundleTestBA.wixproj @@ -0,0 +1,7 @@ + + + TestBA + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PuomBundlePackage/Bundle.wxs b/src/test/burn/TestData/ConfigurableScopeTests/PuomBundlePackage/Bundle.wxs new file mode 100644 index 00000000..8b585e18 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PuomBundlePackage/Bundle.wxs @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PuomBundlePackage/PuomBundlePackage.wixproj b/src/test/burn/TestData/ConfigurableScopeTests/PuomBundlePackage/PuomBundlePackage.wixproj new file mode 100644 index 00000000..55edd282 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PuomBundlePackage/PuomBundlePackage.wixproj @@ -0,0 +1,11 @@ + + + Bundle + + + + + + + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PuomPkg1/PuomPkg1.wixproj b/src/test/burn/TestData/ConfigurableScopeTests/PuomPkg1/PuomPkg1.wixproj new file mode 100644 index 00000000..20673927 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PuomPkg1/PuomPkg1.wixproj @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PuomPkg1/product.wxs b/src/test/burn/TestData/ConfigurableScopeTests/PuomPkg1/product.wxs new file mode 100644 index 00000000..b136f7dd --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PuomPkg1/product.wxs @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PuomPkg2/PuomPkg2.wixproj b/src/test/burn/TestData/ConfigurableScopeTests/PuomPkg2/PuomPkg2.wixproj new file mode 100644 index 00000000..20673927 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PuomPkg2/PuomPkg2.wixproj @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PuomPkg2/product.wxs b/src/test/burn/TestData/ConfigurableScopeTests/PuomPkg2/product.wxs new file mode 100644 index 00000000..2c4cb170 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PuomPkg2/product.wxs @@ -0,0 +1,6 @@ + + + + + + -- cgit v1.2.3-55-g6feb