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/LibraryContext.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/WixToolset.Core/LibraryContext.cs') diff --git a/src/WixToolset.Core/LibraryContext.cs b/src/WixToolset.Core/LibraryContext.cs index 4df19702..9fd76cf5 100644 --- a/src/WixToolset.Core/LibraryContext.cs +++ b/src/WixToolset.Core/LibraryContext.cs @@ -2,8 +2,8 @@ namespace WixToolset.Core { - using System; using System.Collections.Generic; + using System.Threading; using WixToolset.Data; using WixToolset.Extensibility; using WixToolset.Extensibility.Data; @@ -31,5 +31,7 @@ namespace WixToolset.Core public IEnumerable Localizations { get; set; } public IEnumerable Intermediates { get; set; } + + public CancellationToken CancellationToken { get; set; } } } -- cgit v1.2.3-55-g6feb