2024-11-11 10:42:08 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.4" />
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\domain\domain.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2024-11-14 08:01:32 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<Folder Include="ServiceExtensions\" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2024-11-11 10:42:08 +00:00
|
|
|
</Project>
|