diff options
Diffstat (limited to 'src/WixToolset.Core/CompileContext.cs')
-rw-r--r-- | src/WixToolset.Core/CompileContext.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/WixToolset.Core/CompileContext.cs b/src/WixToolset.Core/CompileContext.cs index f92a131d..7dc862b9 100644 --- a/src/WixToolset.Core/CompileContext.cs +++ b/src/WixToolset.Core/CompileContext.cs | |||
@@ -2,8 +2,8 @@ | |||
2 | 2 | ||
3 | namespace WixToolset.Core | 3 | namespace WixToolset.Core |
4 | { | 4 | { |
5 | using System; | ||
6 | using System.Collections.Generic; | 5 | using System.Collections.Generic; |
6 | using System.Threading; | ||
7 | using System.Xml.Linq; | 7 | using System.Xml.Linq; |
8 | using WixToolset.Data; | 8 | using WixToolset.Data; |
9 | using WixToolset.Extensibility; | 9 | using WixToolset.Extensibility; |
@@ -28,5 +28,7 @@ namespace WixToolset.Core | |||
28 | public Platform Platform { get; set; } | 28 | public Platform Platform { get; set; } |
29 | 29 | ||
30 | public XDocument Source { get; set; } | 30 | public XDocument Source { get; set; } |
31 | |||
32 | public CancellationToken CancellationToken { get; set; } | ||
31 | } | 33 | } |
32 | } | 34 | } |