Changed to hosted blazorwasm project.
Restructured project following changes. Moved shop assembly fetching to public facing Web API.
This commit is contained in:
@@ -20,8 +20,8 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\src\BanggoodShop\BanggoodShop.csproj" />
|
||||
<ProjectReference Include="..\..\SimpleLogger\SimpleLogger.csproj" />
|
||||
<ProjectReference Include="..\..\..\SimpleLogger\SimpleLogger.csproj" />
|
||||
<ProjectReference Include="..\..\..\src\MultiShop.Shop\AliExpressModule\MultiShop.Shop.AliExpressModule.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
@@ -1,9 +1,9 @@
|
||||
using MultiShop.ShopFramework;
|
||||
using MultiShop.Shop.Framework;
|
||||
using SimpleLogger;
|
||||
using Xunit;
|
||||
using Xunit.Abstractions;
|
||||
|
||||
namespace AliExpressShop.Tests
|
||||
namespace MultiShop.Shop.AliExpressModule.Tests
|
||||
{
|
||||
public class ShopTest
|
||||
{
|
@@ -2,7 +2,7 @@ using System;
|
||||
using SimpleLogger;
|
||||
using Xunit.Abstractions;
|
||||
|
||||
namespace AliExpressShop
|
||||
namespace MultiShop.Shop.AliExpressModule
|
||||
{
|
||||
public class XUnitLogger : ILogReceiver
|
||||
{
|
@@ -20,8 +20,8 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\src\AliExpressShop\AliExpressShop.csproj" />
|
||||
<ProjectReference Include="..\..\SimpleLogger\SimpleLogger.csproj" />
|
||||
<ProjectReference Include="..\..\..\src\MultiShop.Shop\BanggoodModule\MultiShop.Shop.BanggoodModule.csproj" />
|
||||
<ProjectReference Include="..\..\..\SimpleLogger\SimpleLogger.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
@@ -1,9 +1,9 @@
|
||||
using MultiShop.ShopFramework;
|
||||
using MultiShop.Shop.Framework;
|
||||
using SimpleLogger;
|
||||
using Xunit;
|
||||
using Xunit.Abstractions;
|
||||
|
||||
namespace BanggoodShop.Tests
|
||||
namespace MultiShop.Shop.BanggoodModule.Tests
|
||||
{
|
||||
public class ShopTest
|
||||
{
|
||||
@@ -12,7 +12,6 @@ namespace BanggoodShop.Tests
|
||||
Logger.AddLogListener(new XUnitLogger(output));
|
||||
}
|
||||
|
||||
|
||||
[Fact]
|
||||
public async void Search_CAD_ResultsFound()
|
||||
{
|
@@ -2,7 +2,7 @@ using System;
|
||||
using SimpleLogger;
|
||||
using Xunit.Abstractions;
|
||||
|
||||
namespace BanggoodShop
|
||||
namespace MultiShop.Shop.BanggoodModule
|
||||
{
|
||||
public class XUnitLogger : ILogReceiver
|
||||
{
|
Reference in New Issue
Block a user