Renamed ModuleAPI to ModuleFramework.

This commit is contained in:
2021-04-22 16:03:09 -05:00
parent 4df970a542
commit f9cbd0871d
20 changed files with 19 additions and 19 deletions

View File

@@ -15,7 +15,7 @@
<ItemGroup>
<ProjectReference Include="..\..\src\GameServiceWarden.Core\GameServiceWarden.Core.csproj" />
<ProjectReference Include="..\..\src\GameServiceWarden.ModuleAPI\GameServiceWarden.ModuleAPI.csproj" />
<ProjectReference Include="..\..\src\GameServiceWarden.ModuleFramework\GameServiceWarden.ModuleFramework.csproj" />
</ItemGroup>
</Project>

View File

@@ -2,7 +2,7 @@ using System;
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using GameServiceWarden.ModuleAPI;
using GameServiceWarden.ModuleFramework;
namespace GameServiceWarden.Core.Tests.Modules
{

View File

@@ -1,4 +1,4 @@
using GameServiceWarden.ModuleAPI;
using GameServiceWarden.ModuleFramework;
namespace GameServiceWarden.Core.Tests.Modules
{

View File

@@ -1,5 +1,5 @@
using System.Collections.Generic;
using GameServiceWarden.ModuleAPI;
using GameServiceWarden.ModuleFramework;
namespace GameServiceWarden.Core.Tests.Modules
{

View File

@@ -2,7 +2,7 @@ using System.Collections.Generic;
using System.IO;
using GameServiceWarden.Core.Module;
using GameServiceWarden.Core.Logging;
using GameServiceWarden.ModuleAPI;
using GameServiceWarden.ModuleFramework;
using Xunit;
using Xunit.Abstractions;
using System.Text;

View File

@@ -2,7 +2,7 @@ using System.Collections.Generic;
using System.IO;
using GameServiceWarden.Core.Module;
using GameServiceWarden.Core.Logging;
using GameServiceWarden.ModuleAPI;
using GameServiceWarden.ModuleFramework;
using Xunit;
using Xunit.Abstractions;

View File

@@ -3,7 +3,7 @@ using System.IO;
using GameServiceWarden.Core.Module;
using GameServiceWarden.Core.Persistence;
using GameServiceWarden.Core.Tests.Modules;
using GameServiceWarden.ModuleAPI;
using GameServiceWarden.ModuleFramework;
using Xunit;
namespace GameServiceWarden.Core.Tests.Persistence