diff options
author | Rob Mensching <rob@firegiant.com> | 2020-06-08 16:25:38 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2020-06-08 16:37:14 -0700 |
commit | 04b8976ca565ce95cf32a58c8725843618724383 (patch) | |
tree | 72cf07a394f193a49afcba9bac89647e3b0a0922 /src/WixToolset.Core/ResolveContext.cs | |
parent | 3fb889ab7aa3cb0dfae23e0379e28552e919ad72 (diff) | |
download | wix-04b8976ca565ce95cf32a58c8725843618724383.tar.gz wix-04b8976ca565ce95cf32a58c8725843618724383.tar.bz2 wix-04b8976ca565ce95cf32a58c8725843618724383.zip |
Make commands async and internal processes cancelable
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Core/ResolveContext.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/WixToolset.Core/ResolveContext.cs b/src/WixToolset.Core/ResolveContext.cs index 34da34d1..6e1718b6 100644 --- a/src/WixToolset.Core/ResolveContext.cs +++ b/src/WixToolset.Core/ResolveContext.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 WixToolset.Data; | 7 | using WixToolset.Data; |
8 | using WixToolset.Extensibility; | 8 | using WixToolset.Extensibility; |
9 | using WixToolset.Extensibility.Data; | 9 | using WixToolset.Extensibility.Data; |
@@ -35,5 +35,7 @@ namespace WixToolset.Core | |||
35 | public IVariableResolver VariableResolver { get; set; } | 35 | public IVariableResolver VariableResolver { get; set; } |
36 | 36 | ||
37 | public bool AllowUnresolvedVariables { get; set; } | 37 | public bool AllowUnresolvedVariables { get; set; } |
38 | |||
39 | public CancellationToken CancellationToken { get; set; } | ||
38 | } | 40 | } |
39 | } | 41 | } |