aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2021-03-15 20:47:34 -0400
committerBob Arnson <bob@firegiant.com>2021-03-15 21:26:49 -0400
commit30ae681ff76799c1aea8821cbe4c8de292c59ddd (patch)
tree7067fbd02b658478686a8a4f9e939b27e67687f0
parentd9b70147917b17f5c14537f085b161a392b983f4 (diff)
downloadwix-30ae681ff76799c1aea8821cbe4c8de292c59ddd.tar.gz
wix-30ae681ff76799c1aea8821cbe4c8de292c59ddd.tar.bz2
wix-30ae681ff76799c1aea8821cbe4c8de292c59ddd.zip
Update service provider dependency
-rw-r--r--src/WixToolset.BuildTasks/WixBuild_InProc.cs1
-rw-r--r--src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj1
-rw-r--r--src/heat/Program.cs2
-rw-r--r--src/wix/Program.cs2
-rw-r--r--src/wix/wix.csproj1
5 files changed, 5 insertions, 2 deletions
diff --git a/src/WixToolset.BuildTasks/WixBuild_InProc.cs b/src/WixToolset.BuildTasks/WixBuild_InProc.cs
index a45d2369..9cba0f62 100644
--- a/src/WixToolset.BuildTasks/WixBuild_InProc.cs
+++ b/src/WixToolset.BuildTasks/WixBuild_InProc.cs
@@ -3,6 +3,7 @@
3#if !NETCOREAPP 3#if !NETCOREAPP
4namespace WixToolset.BuildTasks 4namespace WixToolset.BuildTasks
5{ 5{
6 using System;
6 using System.Threading; 7 using System.Threading;
7 using System.Threading.Tasks; 8 using System.Threading.Tasks;
8 using WixToolset.Core.Burn; 9 using WixToolset.Core.Burn;
diff --git a/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj b/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj
index 6f43bae5..e4dfaf2f 100644
--- a/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj
+++ b/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj
@@ -19,6 +19,7 @@
19 19
20 <ItemGroup Condition="'$(TargetFramework)'=='net461'"> 20 <ItemGroup Condition="'$(TargetFramework)'=='net461'">
21 <PackageReference Include="Microsoft.Build.Tasks.Core" Version="14.3" /> 21 <PackageReference Include="Microsoft.Build.Tasks.Core" Version="14.3" />
22 <PackageReference Include="WixToolset.Core" Version="4.0.*" />
22 <PackageReference Include="WixToolset.Core.Burn" Version="4.0.*" /> 23 <PackageReference Include="WixToolset.Core.Burn" Version="4.0.*" />
23 <PackageReference Include="WixToolset.Core.WindowsInstaller" Version="4.0.*" /> 24 <PackageReference Include="WixToolset.Core.WindowsInstaller" Version="4.0.*" />
24 </ItemGroup> 25 </ItemGroup>
diff --git a/src/heat/Program.cs b/src/heat/Program.cs
index 9f95e0bc..d0bcf19f 100644
--- a/src/heat/Program.cs
+++ b/src/heat/Program.cs
@@ -62,7 +62,7 @@ namespace WixToolset.Tools.Heat
62 /// <param name="serviceProvider">Service provider to use throughout this execution.</param> 62 /// <param name="serviceProvider">Service provider to use throughout this execution.</param>
63 /// <param name="args">The commandline arguments.</param> 63 /// <param name="args">The commandline arguments.</param>
64 /// <returns>Returns the application error code.</returns> 64 /// <returns>Returns the application error code.</returns>
65 public Task<int> Run(IWixToolsetServiceProvider serviceProvider, IMessageListener listener, string[] args) 65 public Task<int> Run(IServiceProvider serviceProvider, IMessageListener listener, string[] args)
66 { 66 {
67 var messaging = serviceProvider.GetService<IMessaging>(); 67 var messaging = serviceProvider.GetService<IMessaging>();
68 messaging.SetListener(listener); 68 messaging.SetListener(listener);
diff --git a/src/wix/Program.cs b/src/wix/Program.cs
index 86a1d4d9..d1818df0 100644
--- a/src/wix/Program.cs
+++ b/src/wix/Program.cs
@@ -79,7 +79,7 @@ namespace WixToolset.Tools
79 /// <param name="args">Command-line arguments to execute.</param> 79 /// <param name="args">Command-line arguments to execute.</param>
80 /// <param name="cancellationToken">Cancellation token.</param> 80 /// <param name="cancellationToken">Cancellation token.</param>
81 /// <returns>Returns the application error code.</returns> 81 /// <returns>Returns the application error code.</returns>
82 public static Task<int> Run(IWixToolsetServiceProvider serviceProvider, IMessageListener listener, string[] args, CancellationToken cancellationToken) 82 public static Task<int> Run(IServiceProvider serviceProvider, IMessageListener listener, string[] args, CancellationToken cancellationToken)
83 { 83 {
84 var messaging = serviceProvider.GetService<IMessaging>(); 84 var messaging = serviceProvider.GetService<IMessaging>();
85 messaging.SetListener(listener); 85 messaging.SetListener(listener);
diff --git a/src/wix/wix.csproj b/src/wix/wix.csproj
index 0552c28a..f414bf41 100644
--- a/src/wix/wix.csproj
+++ b/src/wix/wix.csproj
@@ -26,6 +26,7 @@
26 26
27 <ItemGroup> 27 <ItemGroup>
28 <PackageReference Include="WixToolset.Converters" Version="4.0.*" /> 28 <PackageReference Include="WixToolset.Converters" Version="4.0.*" />
29 <PackageReference Include="WixToolset.Core" Version="4.0.*" />
29 <PackageReference Include="WixToolset.Core.Burn" Version="4.0.*" /> 30 <PackageReference Include="WixToolset.Core.Burn" Version="4.0.*" />
30 <PackageReference Include="WixToolset.Core.ExtensionCache" Version="4.0.*" /> 31 <PackageReference Include="WixToolset.Core.ExtensionCache" Version="4.0.*" />
31 <PackageReference Include="WixToolset.Core.WindowsInstaller" Version="4.0.*" /> 32 <PackageReference Include="WixToolset.Core.WindowsInstaller" Version="4.0.*" />