aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-03-14 11:27:44 -0500
committerRob Mensching <rob@firegiant.com>2021-03-14 09:40:59 -0700
commitdad79129d26cfb12f0d8894d9189334fa982b823 (patch)
tree8ba6ed0bf7cb707eaf2a91f242b1a80089d7ace2 /src
parent3ccd5e439da4296d6f2b66ce47075ab20d039676 (diff)
downloadwix-dad79129d26cfb12f0d8894d9189334fa982b823.tar.gz
wix-dad79129d26cfb12f0d8894d9189334fa982b823.tar.bz2
wix-dad79129d26cfb12f0d8894d9189334fa982b823.zip
Remove references to Core from backends.
#6340
Diffstat (limited to 'src')
-rw-r--r--src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs1
-rw-r--r--src/WixToolset.Core.Burn/WixToolset.Core.Burn.csproj6
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/CreateCabinetsCommand.cs1
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/CreateDeltaPatchesCommand.cs1
-rw-r--r--src/WixToolset.Core.WindowsInstaller/WixToolset.Core.WindowsInstaller.csproj6
-rw-r--r--src/WixToolset.Core.WindowsInstaller/WixToolsetCoreServiceProviderExtensions.cs1
-rw-r--r--src/WixToolset.Core/UnbindContext.cs (renamed from src/WixToolset.Core.WindowsInstaller/UnbindContext.cs)0
-rw-r--r--src/WixToolset.Core/Unbinder.cs (renamed from src/WixToolset.Core.WindowsInstaller/Unbinder.cs)0
-rw-r--r--src/WixToolset.Core/WixToolsetServiceProvider.cs2
9 files changed, 6 insertions, 12 deletions
diff --git a/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs b/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs
index afaf65ee..34c72346 100644
--- a/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs
+++ b/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs
@@ -8,7 +8,6 @@ namespace WixToolset.Core.Burn
8 using System.Globalization; 8 using System.Globalization;
9 using System.IO; 9 using System.IO;
10 using System.Linq; 10 using System.Linq;
11 using WixToolset.Core.Bind;
12 using WixToolset.Core.Burn.Bind; 11 using WixToolset.Core.Burn.Bind;
13 using WixToolset.Core.Burn.Bundles; 12 using WixToolset.Core.Burn.Bundles;
14 using WixToolset.Core.Burn.Interfaces; 13 using WixToolset.Core.Burn.Interfaces;
diff --git a/src/WixToolset.Core.Burn/WixToolset.Core.Burn.csproj b/src/WixToolset.Core.Burn/WixToolset.Core.Burn.csproj
index 8b989569..4c57f567 100644
--- a/src/WixToolset.Core.Burn/WixToolset.Core.Burn.csproj
+++ b/src/WixToolset.Core.Burn/WixToolset.Core.Burn.csproj
@@ -22,15 +22,13 @@
22 </ItemGroup> 22 </ItemGroup>
23 23
24 <ItemGroup> 24 <ItemGroup>
25 <ProjectReference Include="..\WixToolset.Core\WixToolset.Core.csproj" />
26 </ItemGroup>
27
28 <ItemGroup>
29 <PackageReference Include="System.Security.Permissions" Version="4.6.0" /> 25 <PackageReference Include="System.Security.Permissions" Version="4.6.0" />
30 <PackageReference Include="WixToolset.Burn" Version="4.0.*" /> 26 <PackageReference Include="WixToolset.Burn" Version="4.0.*" />
31 <PackageReference Include="WixToolset.Core.Native" Version="4.0.*" /> 27 <PackageReference Include="WixToolset.Core.Native" Version="4.0.*" />
28 <PackageReference Include="WixToolset.Data" Version="4.0.*" />
32 <PackageReference Include="WixToolset.Dtf.Resources" Version="4.0.*" /> 29 <PackageReference Include="WixToolset.Dtf.Resources" Version="4.0.*" />
33 <PackageReference Include="WixToolset.Dtf.WindowsInstaller" Version="4.0.*" /> 30 <PackageReference Include="WixToolset.Dtf.WindowsInstaller" Version="4.0.*" />
31 <PackageReference Include="WixToolset.Extensibility" Version="4.0.*" />
34 </ItemGroup> 32 </ItemGroup>
35 33
36 <ItemGroup> 34 <ItemGroup>
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CreateCabinetsCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CreateCabinetsCommand.cs
index 0a543650..43afd718 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/CreateCabinetsCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/CreateCabinetsCommand.cs
@@ -8,7 +8,6 @@ namespace WixToolset.Core.WindowsInstaller.Bind
8 using System.IO; 8 using System.IO;
9 using System.Linq; 9 using System.Linq;
10 using System.Runtime.InteropServices; 10 using System.Runtime.InteropServices;
11 using WixToolset.Core.Bind;
12 using WixToolset.Data; 11 using WixToolset.Data;
13 using WixToolset.Data.Symbols; 12 using WixToolset.Data.Symbols;
14 using WixToolset.Data.WindowsInstaller; 13 using WixToolset.Data.WindowsInstaller;
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CreateDeltaPatchesCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CreateDeltaPatchesCommand.cs
index 640322e6..b587e6d9 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/CreateDeltaPatchesCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/CreateDeltaPatchesCommand.cs
@@ -6,7 +6,6 @@ namespace WixToolset.Core.WindowsInstaller.Bind
6 using System.Collections.Generic; 6 using System.Collections.Generic;
7 using System.Globalization; 7 using System.Globalization;
8 using System.IO; 8 using System.IO;
9 using WixToolset.Core.Bind;
10 using WixToolset.Data; 9 using WixToolset.Data;
11 using WixToolset.Data.Symbols; 10 using WixToolset.Data.Symbols;
12 using WixToolset.Extensibility.Data; 11 using WixToolset.Extensibility.Data;
diff --git a/src/WixToolset.Core.WindowsInstaller/WixToolset.Core.WindowsInstaller.csproj b/src/WixToolset.Core.WindowsInstaller/WixToolset.Core.WindowsInstaller.csproj
index 900115ec..cd2c917c 100644
--- a/src/WixToolset.Core.WindowsInstaller/WixToolset.Core.WindowsInstaller.csproj
+++ b/src/WixToolset.Core.WindowsInstaller/WixToolset.Core.WindowsInstaller.csproj
@@ -13,12 +13,10 @@
13 </PropertyGroup> 13 </PropertyGroup>
14 14
15 <ItemGroup> 15 <ItemGroup>
16 <ProjectReference Include="..\WixToolset.Core\WixToolset.Core.csproj" />
17 </ItemGroup>
18
19 <ItemGroup>
20 <PackageReference Include="WixToolset.Core.Native" Version="4.0.*" /> 16 <PackageReference Include="WixToolset.Core.Native" Version="4.0.*" />
17 <PackageReference Include="WixToolset.Data" Version="4.0.*" />
21 <PackageReference Include="WixToolset.Dtf.WindowsInstaller" Version="4.0.*" /> 18 <PackageReference Include="WixToolset.Dtf.WindowsInstaller" Version="4.0.*" />
19 <PackageReference Include="WixToolset.Extensibility" Version="4.0.*" />
22 </ItemGroup> 20 </ItemGroup>
23 21
24 <ItemGroup> 22 <ItemGroup>
diff --git a/src/WixToolset.Core.WindowsInstaller/WixToolsetCoreServiceProviderExtensions.cs b/src/WixToolset.Core.WindowsInstaller/WixToolsetCoreServiceProviderExtensions.cs
index d9649dec..e686fa49 100644
--- a/src/WixToolset.Core.WindowsInstaller/WixToolsetCoreServiceProviderExtensions.cs
+++ b/src/WixToolset.Core.WindowsInstaller/WixToolsetCoreServiceProviderExtensions.cs
@@ -31,7 +31,6 @@ namespace WixToolset.Core.WindowsInstaller
31 { 31 {
32 // Singletons. 32 // Singletons.
33 coreProvider.AddService((provider, singletons) => AddSingleton<IWindowsInstallerBackendHelper>(singletons, new WindowsInstallerBackendHelper(provider))); 33 coreProvider.AddService((provider, singletons) => AddSingleton<IWindowsInstallerBackendHelper>(singletons, new WindowsInstallerBackendHelper(provider)));
34 coreProvider.AddService<IUnbinder>((provider, singletons) => new Unbinder(provider));
35 } 34 }
36 35
37 private static T AddSingleton<T>(Dictionary<Type, object> singletons, T service) where T : class 36 private static T AddSingleton<T>(Dictionary<Type, object> singletons, T service) where T : class
diff --git a/src/WixToolset.Core.WindowsInstaller/UnbindContext.cs b/src/WixToolset.Core/UnbindContext.cs
index acfb8f1e..acfb8f1e 100644
--- a/src/WixToolset.Core.WindowsInstaller/UnbindContext.cs
+++ b/src/WixToolset.Core/UnbindContext.cs
diff --git a/src/WixToolset.Core.WindowsInstaller/Unbinder.cs b/src/WixToolset.Core/Unbinder.cs
index f712ec3f..f712ec3f 100644
--- a/src/WixToolset.Core.WindowsInstaller/Unbinder.cs
+++ b/src/WixToolset.Core/Unbinder.cs
diff --git a/src/WixToolset.Core/WixToolsetServiceProvider.cs b/src/WixToolset.Core/WixToolsetServiceProvider.cs
index d4f186de..87a6f76b 100644
--- a/src/WixToolset.Core/WixToolsetServiceProvider.cs
+++ b/src/WixToolset.Core/WixToolsetServiceProvider.cs
@@ -40,6 +40,7 @@ namespace WixToolset.Core
40 this.AddService<IDecompileContext>((provider, singletons) => new DecompileContext(provider)); 40 this.AddService<IDecompileContext>((provider, singletons) => new DecompileContext(provider));
41 this.AddService<ILayoutContext>((provider, singletons) => new LayoutContext(provider)); 41 this.AddService<ILayoutContext>((provider, singletons) => new LayoutContext(provider));
42 this.AddService<IInscribeContext>((provider, singletons) => new InscribeContext(provider)); 42 this.AddService<IInscribeContext>((provider, singletons) => new InscribeContext(provider));
43 this.AddService<IUnbindContext>((provider, singletons) => new UnbindContext(provider));
43 44
44 this.AddService<IBindFileWithPath>((provider, singletons) => new BindFileWithPath()); 45 this.AddService<IBindFileWithPath>((provider, singletons) => new BindFileWithPath());
45 this.AddService<IBindPath>((provider, singletons) => new BindPath()); 46 this.AddService<IBindPath>((provider, singletons) => new BindPath());
@@ -62,6 +63,7 @@ namespace WixToolset.Core
62 this.AddService<ILibrarian>((provider, singletons) => new Librarian(provider)); 63 this.AddService<ILibrarian>((provider, singletons) => new Librarian(provider));
63 this.AddService<ILinker>((provider, singletons) => new Linker(provider)); 64 this.AddService<ILinker>((provider, singletons) => new Linker(provider));
64 this.AddService<IResolver>((provider, singletons) => new Resolver(provider)); 65 this.AddService<IResolver>((provider, singletons) => new Resolver(provider));
66 this.AddService<IUnbinder>((provider, singletons) => new Unbinder(provider));
65 67
66 this.AddService<ILocalizationParser>((provider, singletons) => new LocalizationParser(provider)); 68 this.AddService<ILocalizationParser>((provider, singletons) => new LocalizationParser(provider));
67 this.AddService<IVariableResolver>((provider, singletons) => new VariableResolver(provider)); 69 this.AddService<IVariableResolver>((provider, singletons) => new VariableResolver(provider));