From 9c28d92623f1009234f97e43df008e2da8f7a456 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Mon, 8 Jun 2020 16:28:16 -0700 Subject: Support "extension" command --- src/wix/Program.cs | 2 ++ src/wix/wix.csproj | 1 + 2 files changed, 3 insertions(+) diff --git a/src/wix/Program.cs b/src/wix/Program.cs index 3b6c45bc..dcf575f7 100644 --- a/src/wix/Program.cs +++ b/src/wix/Program.cs @@ -8,6 +8,7 @@ namespace WixToolset.Tools using System.Threading.Tasks; using WixToolset.Converters; using WixToolset.Core; + using WixToolset.Core.ExtensionCache; using WixToolset.Data; using WixToolset.Extensibility; using WixToolset.Extensibility.Data; @@ -39,6 +40,7 @@ namespace WixToolset.Tools try { var serviceProvider = WixToolsetServiceProviderFactory.CreateServiceProvider() + .AddExtensionCacheManager() .AddConverter(); return await Run(serviceProvider, listener, args, cts.Token); diff --git a/src/wix/wix.csproj b/src/wix/wix.csproj index 2507de33..4deeee86 100644 --- a/src/wix/wix.csproj +++ b/src/wix/wix.csproj @@ -23,6 +23,7 @@ + -- cgit v1.2.3-55-g6feb