From 04b8976ca565ce95cf32a58c8725843618724383 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Mon, 8 Jun 2020 16:25:38 -0700 Subject: Make commands async and internal processes cancelable --- src/WixToolset.Core/CompileContext.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/WixToolset.Core/CompileContext.cs') 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 @@ namespace WixToolset.Core { - using System; using System.Collections.Generic; + using System.Threading; using System.Xml.Linq; using WixToolset.Data; using WixToolset.Extensibility; @@ -28,5 +28,7 @@ namespace WixToolset.Core public Platform Platform { get; set; } public XDocument Source { get; set; } + + public CancellationToken CancellationToken { get; set; } } } -- cgit v1.2.3-55-g6feb