diff options
author | Rob Mensching <rob@firegiant.com> | 2022-08-24 14:38:30 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-08-25 07:54:51 -0700 |
commit | 3ba9b06b2ab5b67e53354134323e6551addb96b8 (patch) | |
tree | 9657fe01ca461c544b3ec6e90eb4e39ddbfa7981 /src/api | |
parent | 42964da2a12df3b6e7d658a8037f17be003b1947 (diff) | |
download | wix-3ba9b06b2ab5b67e53354134323e6551addb96b8.tar.gz wix-3ba9b06b2ab5b67e53354134323e6551addb96b8.tar.bz2 wix-3ba9b06b2ab5b67e53354134323e6551addb96b8.zip |
Allow customization of the .wixpdb output folder
Fixes 6857
Diffstat (limited to 'src/api')
-rw-r--r-- | src/api/wix/WixToolset.Extensibility/Data/TrackedFileType.cs | 16 |
1 files changed, 14 insertions, 2 deletions
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 | |||
25 | Intermediate, | 25 | Intermediate, |
26 | 26 | ||
27 | /// <summary> | 27 | /// <summary> |
28 | /// Output created by the build process itself (like a .msi, .cab or .wixpdb). | 28 | /// Output created by the build process itself (like a .cab). |
29 | /// These files can be recreated in the final output location by building again. | 29 | /// These files can be recreated in the final output location by building again. |
30 | /// </summary> | 30 | /// </summary> |
31 | BuiltOutput, | 31 | BuiltContentOutput, |
32 | |||
33 | /// <summary> | ||
34 | /// Target output created by the build process itself (like a .msi, .msm, .wixlib, .exe). | ||
35 | /// These files can be recreated in the final output location by building again. | ||
36 | /// </summary> | ||
37 | BuiltTargetOutput, | ||
38 | |||
39 | /// <summary> | ||
40 | /// Output pdb created by the build process itself (like a .wixpdb). | ||
41 | /// These files can be recreated in the final output location by building again. | ||
42 | /// </summary> | ||
43 | BuiltPdbOutput, | ||
32 | 44 | ||
33 | /// <summary> | 45 | /// <summary> |
34 | /// Output copied by the build process (like external files in an .msi). | 46 | /// Output copied by the build process (like external files in an .msi). |