From 3ba9b06b2ab5b67e53354134323e6551addb96b8 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 24 Aug 2022 14:38:30 -0700 Subject: Allow customization of the .wixpdb output folder Fixes 6857 --- .../wix/WixToolset.Extensibility/Data/TrackedFileType.cs | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'src/api') diff --git a/src/api/wix/WixToolset.Extensibility/Data/TrackedFileType.cs b/src/api/wix/WixToolset.Extensibility/Data/TrackedFileType.cs index 904a990f..40abd590 100644 --- a/src/api/wix/WixToolset.Extensibility/Data/TrackedFileType.cs +++ b/src/api/wix/WixToolset.Extensibility/Data/TrackedFileType.cs @@ -25,10 +25,22 @@ namespace WixToolset.Extensibility.Data Intermediate, /// - /// Output created by the build process itself (like a .msi, .cab or .wixpdb). + /// Output created by the build process itself (like a .cab). /// These files can be recreated in the final output location by building again. /// - BuiltOutput, + BuiltContentOutput, + + /// + /// Target output created by the build process itself (like a .msi, .msm, .wixlib, .exe). + /// These files can be recreated in the final output location by building again. + /// + BuiltTargetOutput, + + /// + /// Output pdb created by the build process itself (like a .wixpdb). + /// These files can be recreated in the final output location by building again. + /// + BuiltPdbOutput, /// /// Output copied by the build process (like external files in an .msi). -- cgit v1.2.3-55-g6feb