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>
<ProjectReference Include="..\Domain\Domain.csproj" />
<ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
</ItemGroup>
</Project>

View File

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

View File

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

View File

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