Re-organize all projects (#4166)

This commit is contained in:
DrSmugleaf
2021-06-09 22:19:39 +02:00
committed by GitHub
parent 9f50e4061b
commit ff1a2d97ea
1773 changed files with 5258 additions and 5508 deletions

View File

@@ -1,9 +1,11 @@
using System;
using System.Threading.Tasks;
using Content.Client;
using Content.Client.Interfaces.Parallax;
using Content.Client.IoC;
using Content.Client.Parallax.Managers;
using Content.Server;
using Content.Server.Interfaces.GameTicking;
using Content.Server.GameTicking;
using Content.Server.IoC;
using Content.Shared;
using NUnit.Framework;
using Robust.Server.Maps;
@@ -15,6 +17,7 @@ using Robust.Shared.Map;
using Robust.Shared.Network;
using Robust.Shared.Timing;
using Robust.UnitTesting;
using EntryPoint = Content.Client.EntryPoint.EntryPoint;
namespace Content.IntegrationTests
{
@@ -33,7 +36,7 @@ namespace Content.IntegrationTests
options.ContentAssemblies = new[]
{
typeof(Shared.EntryPoint).Assembly,
typeof(Client.EntryPoint).Assembly,
typeof(EntryPoint).Assembly,
typeof(ContentIntegrationTest).Assembly
};
@@ -76,7 +79,7 @@ namespace Content.IntegrationTests
options.ContentAssemblies = new[]
{
typeof(Shared.EntryPoint).Assembly,
typeof(Server.EntryPoint).Assembly,
typeof(Server.EntryPoint.EntryPoint).Assembly,
typeof(ContentIntegrationTest).Assembly
};