Remove unused Infrastructure project reference and adjust using directives in Application and Infrastructure files

This commit is contained in:
Adriano Serighelli 2025-11-19 15:11:45 -03:00
parent e4c398eef0
commit fa893c91ad
4 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,6 @@
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\Domain\Domain.csproj" /> <ProjectReference Include="..\Domain\Domain.csproj" />
<ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@ -5,7 +5,6 @@ using System.Text;
using System.Threading.Channels; using System.Threading.Channels;
using System.Xml.Linq; using System.Xml.Linq;
using Domain; using Domain;
using Infrastructure;
namespace Application namespace Application
{ {

View File

@ -13,6 +13,7 @@
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\Domain\Domain.csproj" /> <ProjectReference Include="..\Domain\Domain.csproj" />
<ProjectReference Include="..\Application\Application.csproj" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@ -1,5 +1,6 @@
using System.Globalization; using System.Globalization;
using Domain; using Domain;
using Microsoft.VisualBasic;
using Npgsql; using Npgsql;
using NpgsqlTypes; using NpgsqlTypes;