diff options
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). |