diff options
author | Rob Mensching <rob@firegiant.com> | 2022-10-04 13:21:14 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-10-04 14:23:47 -0700 |
commit | bec7063ae6bef19c4deb62afab7c529e739bbfa9 (patch) | |
tree | 2eac8d5a584e8edf6d0bd4cef80a63883bb3ae36 /src/api | |
parent | 9a18c230cfd88996b43c8ff7c59a195fb34ed3cf (diff) | |
download | wix-bec7063ae6bef19c4deb62afab7c529e739bbfa9.tar.gz wix-bec7063ae6bef19c4deb62afab7c529e739bbfa9.tar.bz2 wix-bec7063ae6bef19c4deb62afab7c529e739bbfa9.zip |
Fix tracking of detached containers
Detached containers were being tracked as both a BuiltContentOutput
and Temporary file. That caused the detached containers to be
cleaned up and unavailable for the bundle after the build.
Also removed the unused ITrackedFile.Clean property.
Diffstat (limited to 'src/api')
-rw-r--r-- | src/api/wix/WixToolset.Extensibility/Data/ITrackedFile.cs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/api/wix/WixToolset.Extensibility/Data/ITrackedFile.cs b/src/api/wix/WixToolset.Extensibility/Data/ITrackedFile.cs index df36bd2b..771531e8 100644 --- a/src/api/wix/WixToolset.Extensibility/Data/ITrackedFile.cs +++ b/src/api/wix/WixToolset.Extensibility/Data/ITrackedFile.cs | |||
@@ -10,11 +10,6 @@ namespace WixToolset.Extensibility.Data | |||
10 | public interface ITrackedFile | 10 | public interface ITrackedFile |
11 | { | 11 | { |
12 | /// <summary> | 12 | /// <summary> |
13 | /// Indicates whether the tracked file should be cleaned by the project. | ||
14 | /// </summary> | ||
15 | bool Clean { get; set; } | ||
16 | |||
17 | /// <summary> | ||
18 | /// Path to tracked file. | 13 | /// Path to tracked file. |
19 | /// </summary> | 14 | /// </summary> |
20 | string Path { get; set; } | 15 | string Path { get; set; } |