diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2022-02-22 20:23:43 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-02-22 23:37:57 -0600 |
commit | 8e8f724d90c6835febb8b5865009746aea73a334 (patch) | |
tree | b255c0a7232af8d24bcf44fd476b95bdfdcfe777 /src/test/burn/WixTestTools/MSIExec.cs | |
parent | 0740d93ca8be06ec0e5da5b51ceff52f67ab5bf5 (diff) | |
download | wix-8e8f724d90c6835febb8b5865009746aea73a334.tar.gz wix-8e8f724d90c6835febb8b5865009746aea73a334.tar.bz2 wix-8e8f724d90c6835febb8b5865009746aea73a334.zip |
Add UnsafeUninstall action.
Fixes #6721
Diffstat (limited to 'src/test/burn/WixTestTools/MSIExec.cs')
-rw-r--r-- | src/test/burn/WixTestTools/MSIExec.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/test/burn/WixTestTools/MSIExec.cs b/src/test/burn/WixTestTools/MSIExec.cs index 8dce96cf..a10a48d6 100644 --- a/src/test/burn/WixTestTools/MSIExec.cs +++ b/src/test/burn/WixTestTools/MSIExec.cs | |||
@@ -697,6 +697,11 @@ namespace WixTestTools | |||
697 | /// Uninstalls the product as part of cleanup | 697 | /// Uninstalls the product as part of cleanup |
698 | /// </summary> | 698 | /// </summary> |
699 | Cleanup, | 699 | Cleanup, |
700 | |||
701 | /// <summary> | ||
702 | /// No action automatically added to arguments | ||
703 | /// </summary> | ||
704 | Custom, | ||
700 | } | 705 | } |
701 | 706 | ||
702 | /// <summary> | 707 | /// <summary> |