diff --git a/test/SeederApi.IntegrationTest/QueryControllerTest.cs b/test/SeederApi.IntegrationTest/QueryControllerTest.cs index 0b8707c6ce..571181e49f 100644 --- a/test/SeederApi.IntegrationTest/QueryControllerTest.cs +++ b/test/SeederApi.IntegrationTest/QueryControllerTest.cs @@ -1,5 +1,6 @@ using System.Net; using Bit.SeederApi.Models.Request; +using Xunit; namespace Bit.SeederApi.IntegrationTest; diff --git a/test/SeederApi.IntegrationTest/SeedControllerTest.cs b/test/SeederApi.IntegrationTest/SeedControllerTest.cs index 8766634ad0..1d081d019e 100644 --- a/test/SeederApi.IntegrationTest/SeedControllerTest.cs +++ b/test/SeederApi.IntegrationTest/SeedControllerTest.cs @@ -1,6 +1,7 @@ using System.Net; using Bit.SeederApi.Models.Request; using Bit.SeederApi.Models.Response; +using Xunit; namespace Bit.SeederApi.IntegrationTest; diff --git a/test/SeederApi.IntegrationTest/SeederApiApplicationFactory.cs b/test/SeederApi.IntegrationTest/SeederApiApplicationFactory.cs index 3811c31753..6d815b03ea 100644 --- a/test/SeederApi.IntegrationTest/SeederApiApplicationFactory.cs +++ b/test/SeederApi.IntegrationTest/SeederApiApplicationFactory.cs @@ -1,4 +1,5 @@ -using Bit.IntegrationTestCommon; +using Bit.Core.Services; +using Bit.IntegrationTestCommon; using Bit.IntegrationTestCommon.Factories; namespace Bit.SeederApi.IntegrationTest; diff --git a/test/Server.IntegrationTest/Server.cs b/test/Server.IntegrationTest/Server.cs index 75f88cbbe7..073dbffb5a 100644 --- a/test/Server.IntegrationTest/Server.cs +++ b/test/Server.IntegrationTest/Server.cs @@ -1,4 +1,8 @@ -namespace Bit.Server.IntegrationTest; +using Microsoft.AspNetCore.Hosting; +using Microsoft.AspNetCore.Mvc.Testing; +using Microsoft.AspNetCore.TestHost; + +namespace Bit.Server.IntegrationTest; public class Server : WebApplicationFactory { diff --git a/util/SeederApi/Commands/DestroySceneCommand.cs b/util/SeederApi/Commands/DestroySceneCommand.cs index 32294f26c1..0e0f4edd6d 100644 --- a/util/SeederApi/Commands/DestroySceneCommand.cs +++ b/util/SeederApi/Commands/DestroySceneCommand.cs @@ -1,4 +1,6 @@ -using Bit.SeederApi.Commands.Interfaces; +using Bit.Core.Repositories; +using Bit.Infrastructure.EntityFramework.Repositories; +using Bit.SeederApi.Commands.Interfaces; using Bit.SeederApi.Services; namespace Bit.SeederApi.Commands; diff --git a/util/SeederApi/Controllers/InfoController.cs b/util/SeederApi/Controllers/InfoController.cs index 100035de4d..de4a264ddb 100644 --- a/util/SeederApi/Controllers/InfoController.cs +++ b/util/SeederApi/Controllers/InfoController.cs @@ -1,4 +1,5 @@ -using Microsoft.AspNetCore.Mvc; +using Bit.Core.Utilities; +using Microsoft.AspNetCore.Mvc; namespace Bit.SeederApi.Controllers; diff --git a/util/SeederApi/Program.cs b/util/SeederApi/Program.cs index ef03d54d3b..2067df307a 100644 --- a/util/SeederApi/Program.cs +++ b/util/SeederApi/Program.cs @@ -1,4 +1,6 @@ -namespace Bit.SeederApi; +using Bit.Core.Utilities; + +namespace Bit.SeederApi; public class Program { diff --git a/util/SeederApi/Queries/GetAllPlayIdsQuery.cs b/util/SeederApi/Queries/GetAllPlayIdsQuery.cs index 477606162c..7bc72e5b07 100644 --- a/util/SeederApi/Queries/GetAllPlayIdsQuery.cs +++ b/util/SeederApi/Queries/GetAllPlayIdsQuery.cs @@ -1,4 +1,5 @@ -using Bit.SeederApi.Queries.Interfaces; +using Bit.Infrastructure.EntityFramework.Repositories; +using Bit.SeederApi.Queries.Interfaces; namespace Bit.SeederApi.Queries; diff --git a/util/SeederApi/Startup.cs b/util/SeederApi/Startup.cs index 3d02ddb57f..420078f509 100644 --- a/util/SeederApi/Startup.cs +++ b/util/SeederApi/Startup.cs @@ -1,4 +1,5 @@ using System.Globalization; +using Bit.Core.Settings; using Bit.Seeder; using Bit.Seeder.Factories; using Bit.SeederApi.Extensions;