From fa893c91ad2c029277a57be786c88eabb75fbc86 Mon Sep 17 00:00:00 2001 From: Adriano Serighelli Date: Wed, 19 Nov 2025 15:11:45 -0300 Subject: [PATCH] Remove unused Infrastructure project reference and adjust using directives in Application and Infrastructure files --- Application/Application.csproj | 1 - Application/ProcessarMedicoesUseCase.cs | 1 - Infrastructure/Infrastructure.csproj | 1 + Infrastructure/PostgresRepository.cs | 1 + 4 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Application/Application.csproj b/Application/Application.csproj index a26b76f..8e38a8a 100644 --- a/Application/Application.csproj +++ b/Application/Application.csproj @@ -8,7 +8,6 @@ - diff --git a/Application/ProcessarMedicoesUseCase.cs b/Application/ProcessarMedicoesUseCase.cs index 60a8db7..f223503 100644 --- a/Application/ProcessarMedicoesUseCase.cs +++ b/Application/ProcessarMedicoesUseCase.cs @@ -5,7 +5,6 @@ using System.Text; using System.Threading.Channels; using System.Xml.Linq; using Domain; -using Infrastructure; namespace Application { diff --git a/Infrastructure/Infrastructure.csproj b/Infrastructure/Infrastructure.csproj index d0bae70..9d65d2d 100644 --- a/Infrastructure/Infrastructure.csproj +++ b/Infrastructure/Infrastructure.csproj @@ -13,6 +13,7 @@ + diff --git a/Infrastructure/PostgresRepository.cs b/Infrastructure/PostgresRepository.cs index 8715f96..0d85a40 100644 --- a/Infrastructure/PostgresRepository.cs +++ b/Infrastructure/PostgresRepository.cs @@ -1,5 +1,6 @@ using System.Globalization; using Domain; +using Microsoft.VisualBasic; using Npgsql; using NpgsqlTypes;