2024-04-16 18:38:11 -05:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.1"/>
|
2024-04-22 16:54:28 -05:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0-preview.3.24172.4"/>
|
2024-04-16 18:38:11 -05:00
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0"/>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-04-22 16:54:28 -05:00
|
|
|
<ProjectReference Include="..\DAL\DAL.csproj"/>
|
2024-04-16 18:38:11 -05:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|