From 47724ab546a84e77b4699bc28aa4e4ad7901253f Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Fri, 1 Jan 2021 21:35:51 -0600 Subject: Try to make it easier to add new kinds of tests. --- src/TestData/PrereqBaTests/BundleA/BundleA.wixproj | 16 ++++++++++++++++ src/TestData/PrereqBaTests/BundleA/BundleA.wxi | 17 +++++++++++++++++ src/TestData/PrereqBaTests/BundleA/BundleA.wxs | 21 +++++++++++++++++++++ .../PrereqBaTests/BundleA/bad.runtimeconfig.json | 10 ++++++++++ src/TestData/PrereqBaTests/BundleB/BundleB.wixproj | 16 ++++++++++++++++ src/TestData/PrereqBaTests/BundleB/BundleB.wxi | 17 +++++++++++++++++ src/TestData/PrereqBaTests/BundleB/BundleB.wxs | 20 ++++++++++++++++++++ src/TestData/PrereqBaTests/BundleB/bad.config | 17 +++++++++++++++++ .../PrereqBaTests/PackageA/PackageA.wixproj | 9 +++++++++ .../PrereqBaTests/PackageB/PackageB.wixproj | 9 +++++++++ .../PrereqBaTests/PackageF/PackageF.wixproj | 12 ++++++++++++ 11 files changed, 164 insertions(+) create mode 100644 src/TestData/PrereqBaTests/BundleA/BundleA.wixproj create mode 100644 src/TestData/PrereqBaTests/BundleA/BundleA.wxi create mode 100644 src/TestData/PrereqBaTests/BundleA/BundleA.wxs create mode 100644 src/TestData/PrereqBaTests/BundleA/bad.runtimeconfig.json create mode 100644 src/TestData/PrereqBaTests/BundleB/BundleB.wixproj create mode 100644 src/TestData/PrereqBaTests/BundleB/BundleB.wxi create mode 100644 src/TestData/PrereqBaTests/BundleB/BundleB.wxs create mode 100644 src/TestData/PrereqBaTests/BundleB/bad.config create mode 100644 src/TestData/PrereqBaTests/PackageA/PackageA.wixproj create mode 100644 src/TestData/PrereqBaTests/PackageB/PackageB.wixproj create mode 100644 src/TestData/PrereqBaTests/PackageF/PackageF.wixproj (limited to 'src/TestData/PrereqBaTests') diff --git a/src/TestData/PrereqBaTests/BundleA/BundleA.wixproj b/src/TestData/PrereqBaTests/BundleA/BundleA.wixproj new file mode 100644 index 00000000..56f4b11e --- /dev/null +++ b/src/TestData/PrereqBaTests/BundleA/BundleA.wixproj @@ -0,0 +1,16 @@ + + + + Bundle + + + + + + + + + + + + \ No newline at end of file diff --git a/src/TestData/PrereqBaTests/BundleA/BundleA.wxi b/src/TestData/PrereqBaTests/BundleA/BundleA.wxi new file mode 100644 index 00000000..23623ffb --- /dev/null +++ b/src/TestData/PrereqBaTests/BundleA/BundleA.wxi @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/TestData/PrereqBaTests/BundleA/BundleA.wxs b/src/TestData/PrereqBaTests/BundleA/BundleA.wxs new file mode 100644 index 00000000..53139834 --- /dev/null +++ b/src/TestData/PrereqBaTests/BundleA/BundleA.wxs @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/TestData/PrereqBaTests/BundleA/bad.runtimeconfig.json b/src/TestData/PrereqBaTests/BundleA/bad.runtimeconfig.json new file mode 100644 index 00000000..07a1a830 --- /dev/null +++ b/src/TestData/PrereqBaTests/BundleA/bad.runtimeconfig.json @@ -0,0 +1,10 @@ +{ + "runtimeOptions": { + "tfm": "net5.5", + "rollForward": "Disable", + "framework": { + "name": "Microsoft.WindowsDesktop.App", + "version": "5.5.0" + } + } +} \ No newline at end of file diff --git a/src/TestData/PrereqBaTests/BundleB/BundleB.wixproj b/src/TestData/PrereqBaTests/BundleB/BundleB.wixproj new file mode 100644 index 00000000..420c2a0c --- /dev/null +++ b/src/TestData/PrereqBaTests/BundleB/BundleB.wixproj @@ -0,0 +1,16 @@ + + + + Bundle + + + + + + + + + + + + \ No newline at end of file diff --git a/src/TestData/PrereqBaTests/BundleB/BundleB.wxi b/src/TestData/PrereqBaTests/BundleB/BundleB.wxi new file mode 100644 index 00000000..6bfeb213 --- /dev/null +++ b/src/TestData/PrereqBaTests/BundleB/BundleB.wxi @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/TestData/PrereqBaTests/BundleB/BundleB.wxs b/src/TestData/PrereqBaTests/BundleB/BundleB.wxs new file mode 100644 index 00000000..57d8a552 --- /dev/null +++ b/src/TestData/PrereqBaTests/BundleB/BundleB.wxs @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/TestData/PrereqBaTests/BundleB/bad.config b/src/TestData/PrereqBaTests/BundleB/bad.config new file mode 100644 index 00000000..1512e59a --- /dev/null +++ b/src/TestData/PrereqBaTests/BundleB/bad.config @@ -0,0 +1,17 @@ + + + + + + + +
+ + + + + + + + + diff --git a/src/TestData/PrereqBaTests/PackageA/PackageA.wixproj b/src/TestData/PrereqBaTests/PackageA/PackageA.wixproj new file mode 100644 index 00000000..d46982fa --- /dev/null +++ b/src/TestData/PrereqBaTests/PackageA/PackageA.wixproj @@ -0,0 +1,9 @@ + + + + {A13BFF68-61DF-4015-9AD1-03854B5E0212} + + + + + \ No newline at end of file diff --git a/src/TestData/PrereqBaTests/PackageB/PackageB.wixproj b/src/TestData/PrereqBaTests/PackageB/PackageB.wixproj new file mode 100644 index 00000000..d5edf338 --- /dev/null +++ b/src/TestData/PrereqBaTests/PackageB/PackageB.wixproj @@ -0,0 +1,9 @@ + + + + {3DD4621A-F7AB-4548-89A8-6DCB0A9BC954} + + + + + \ No newline at end of file diff --git a/src/TestData/PrereqBaTests/PackageF/PackageF.wixproj b/src/TestData/PrereqBaTests/PackageF/PackageF.wixproj new file mode 100644 index 00000000..3d52e939 --- /dev/null +++ b/src/TestData/PrereqBaTests/PackageF/PackageF.wixproj @@ -0,0 +1,12 @@ + + + + {7DEEE928-CD7F-49AD-8000-2ED6339D8A78} + + + + + + + + \ No newline at end of file -- cgit v1.2.3-55-g6feb