2024-11-08 08:08:54 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-11-13 10:08:00 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.11" />
|
2024-11-08 08:08:54 +00:00
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\domain\domain.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|