diff options
author | Rob Mensching <rob@firegiant.com> | 2020-06-08 16:28:16 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2020-06-10 08:16:55 -0700 |
commit | 9c28d92623f1009234f97e43df008e2da8f7a456 (patch) | |
tree | 936297dcf0d889fb5e2a49382c3e63945cc6a380 | |
parent | 1a69e7ed4156d15af0b0d479b1c99aa2358fbfc9 (diff) | |
download | wix-9c28d92623f1009234f97e43df008e2da8f7a456.tar.gz wix-9c28d92623f1009234f97e43df008e2da8f7a456.tar.bz2 wix-9c28d92623f1009234f97e43df008e2da8f7a456.zip |
Support "extension" command
-rw-r--r-- | src/wix/Program.cs | 2 | ||||
-rw-r--r-- | src/wix/wix.csproj | 1 |
2 files changed, 3 insertions, 0 deletions
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 | |||
8 | using System.Threading.Tasks; | 8 | using System.Threading.Tasks; |
9 | using WixToolset.Converters; | 9 | using WixToolset.Converters; |
10 | using WixToolset.Core; | 10 | using WixToolset.Core; |
11 | using WixToolset.Core.ExtensionCache; | ||
11 | using WixToolset.Data; | 12 | using WixToolset.Data; |
12 | using WixToolset.Extensibility; | 13 | using WixToolset.Extensibility; |
13 | using WixToolset.Extensibility.Data; | 14 | using WixToolset.Extensibility.Data; |
@@ -39,6 +40,7 @@ namespace WixToolset.Tools | |||
39 | try | 40 | try |
40 | { | 41 | { |
41 | var serviceProvider = WixToolsetServiceProviderFactory.CreateServiceProvider() | 42 | var serviceProvider = WixToolsetServiceProviderFactory.CreateServiceProvider() |
43 | .AddExtensionCacheManager() | ||
42 | .AddConverter(); | 44 | .AddConverter(); |
43 | 45 | ||
44 | return await Run(serviceProvider, listener, args, cts.Token); | 46 | 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 @@ | |||
23 | <ItemGroup> | 23 | <ItemGroup> |
24 | <PackageReference Include="WixToolset.Converters" Version="4.0.*" /> | 24 | <PackageReference Include="WixToolset.Converters" Version="4.0.*" /> |
25 | <PackageReference Include="WixToolset.Core.Burn" Version="4.0.*" /> | 25 | <PackageReference Include="WixToolset.Core.Burn" Version="4.0.*" /> |
26 | <PackageReference Include="WixToolset.Core.ExtensionCache" Version="4.0.*" /> | ||
26 | <PackageReference Include="WixToolset.Core.WindowsInstaller" Version="4.0.*" /> | 27 | <PackageReference Include="WixToolset.Core.WindowsInstaller" Version="4.0.*" /> |
27 | </ItemGroup> | 28 | </ItemGroup> |
28 | 29 | ||