Integracion_DGA/DAL/DAL.csproj

21 lines
640 B
XML
Raw Normal View History

2025-06-24 12:32:36 -04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
2025-06-24 14:46:32 -04:00
<PackageReference Include="Dapper" Version="2.1.66" />
2025-06-24 12:32:36 -04:00
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.0.2" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.6" />
2025-06-24 14:46:32 -04:00
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.6" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SHARED\Shared.csproj" />
2025-06-24 12:32:36 -04:00
</ItemGroup>
</Project>