Skip to content
This repository was archived by the owner on Jan 8, 2022. It is now read-only.

Commit 978a8d4

Browse files
committed
Fixed Lumia?
1 parent 5870676 commit 978a8d4

File tree

4 files changed

+25
-29
lines changed

4 files changed

+25
-29
lines changed

Source/Deployer.Lumia.Gui/Deployer.Lumia.Gui.csproj

Lines changed: 22 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -226,32 +226,6 @@
226226
<Version>1.0.8</Version>
227227
</PackageReference>
228228
</ItemGroup>
229-
<ItemGroup>
230-
<ProjectReference Include="..\Deployer.Gui.Common\Deployer.Gui.Common.csproj">
231-
<Project>{AD8EA86C-AF60-4CCF-9CAA-07BBF5E039EC}</Project>
232-
<Name>Deployer.Gui.Common</Name>
233-
</ProjectReference>
234-
<ProjectReference Include="..\Deployer.Gui.Core\Deployer.Gui.Core.csproj">
235-
<Project>{4DDBED8A-6445-4E59-9E64-6FA3B7419052}</Project>
236-
<Name>Deployer.Gui.Core</Name>
237-
</ProjectReference>
238-
<ProjectReference Include="..\Deployer.Lumia.NetFx\Deployer.Lumia.NetFx.csproj">
239-
<Project>{2ABBF26A-2C87-4657-861E-08EC55DEAD77}</Project>
240-
<Name>Deployer.Lumia.NetFx</Name>
241-
</ProjectReference>
242-
<ProjectReference Include="..\Deployer.Lumia\Deployer.Lumia.csproj">
243-
<Project>{20501832-13f5-4673-9d86-9e7e0c562027}</Project>
244-
<Name>Deployer.Lumia</Name>
245-
</ProjectReference>
246-
<ProjectReference Include="..\Deployer.NetFx\Deployer.NetFx.csproj">
247-
<Project>{FBEDAF0E-E2ED-4005-8D83-F980FA67FEB2}</Project>
248-
<Name>Deployer.NetFx</Name>
249-
</ProjectReference>
250-
<ProjectReference Include="..\Deployer\Deployer.csproj">
251-
<Project>{B0709401-1148-43B4-A06C-79173393DD98}</Project>
252-
<Name>Deployer</Name>
253-
</ProjectReference>
254-
</ItemGroup>
255229
<ItemGroup>
256230
<Resource Include="Assets\950.png" />
257231
<Resource Include="Assets\950xl.png" />
@@ -283,5 +257,27 @@
283257
<ItemGroup>
284258
<Resource Include="Assets\heart.png" />
285259
</ItemGroup>
260+
<ItemGroup>
261+
<ProjectReference Include="..\Deployer.Gui.Common\Deployer.Gui.Common.csproj">
262+
<Project>{ad8ea86c-af60-4ccf-9caa-07bbf5e039ec}</Project>
263+
<Name>Deployer.Gui.Common</Name>
264+
</ProjectReference>
265+
<ProjectReference Include="..\Deployer.Gui.Core\Deployer.Gui.Core.csproj">
266+
<Project>{4ddbed8a-6445-4e59-9e64-6fa3b7419052}</Project>
267+
<Name>Deployer.Gui.Core</Name>
268+
</ProjectReference>
269+
<ProjectReference Include="..\Deployer.Lumia.NetFx\Deployer.Lumia.NetFx.csproj">
270+
<Project>{cfa21504-2cfd-468b-8458-bd9bd05bcf19}</Project>
271+
<Name>Deployer.Lumia.NetFx</Name>
272+
</ProjectReference>
273+
<ProjectReference Include="..\Deployer.Lumia\Deployer.Lumia.csproj">
274+
<Project>{f78af625-5811-4d00-b95d-0b2a331152fd}</Project>
275+
<Name>Deployer.Lumia</Name>
276+
</ProjectReference>
277+
<ProjectReference Include="..\Deployer\Deployer.csproj">
278+
<Project>{b0709401-1148-43b4-a06c-79173393dd98}</Project>
279+
<Name>Deployer</Name>
280+
</ProjectReference>
281+
</ItemGroup>
286282
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
287283
</Project>

Source/Deployer.Lumia.Gui/Locator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public Locator()
3838

3939
container.Configure(x =>
4040
{
41-
x.Configure(optionsProvider);
41+
x.ConfigureForTesting(optionsProvider);
4242
x.Export<WpfMarkdownDisplayer>().As<IMarkdownDisplayer>();
4343
x.ExportFactory(() => new BehaviorSubject<double>(double.NaN))
4444
.As<IObserver<double>>()

Source/Deployer.Lumia.NetFx/ContainerConfigurator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ where type.GetTypeInfo().ImplementedInterfaces.Contains(typeof(IDeploymentTask))
4040
block.ExportFactory(Tokenizer.Create).As<Tokenizer<LangToken>>();
4141
block.Export<ScriptParser>().As<IScriptParser>();
4242
block.ExportFactory(() => installOptionsProvider).As<IWindowsOptionsProvider>();
43-
43+
block.Export<LumiaDisklayoutPreparer>().As<IDisklayoutPreparer>();
4444
block.Export<PhoneInfoReader>().As<IPhoneInfoReader>();
4545
block.Export<WoaDeployer>().As<IWoaDeployer>();
4646
block.Export<Tooling>().As<ITooling>();

Source/Deployer.Raspberry.NetFx/ContainerConfigurator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static IExportRegistrationBlock WithCommon(this IExportRegistrationBlock
3434
from type in a.ExportedTypes
3535
where type.GetTypeInfo().ImplementedInterfaces.Contains(typeof(IDeploymentTask))
3636
select type;
37-
block.ExportAssemblies(Assemblies.AppDomainAssemblies).ByInterface<ISpaceAllocator<IDevice>>();
37+
block.ExportAssemblies(Assemblies.AppDomainAssemblies).ByInterface<ISpaceAllocator<IPhone>>();
3838
block.Export<ZipExtractor>().As<IZipExtractor>();
3939
block.ExportFactory(Tokenizer.Create).As<Tokenizer<LangToken>>();
4040
block.Export<ScriptParser>().As<IScriptParser>();

0 commit comments

Comments
 (0)