pr1/presence/presence_api/presence_api.csproj

22 lines
718 B
XML
Raw Permalink Normal View History

2024-12-05 09:30:01 +00:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
2024-12-19 17:36:57 +00:00
<TargetFramework>net8.0</TargetFramework>
2024-12-05 09:30:01 +00:00
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
2024-12-19 17:36:57 +00:00
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.0" />
2024-12-05 09:30:01 +00:00
<PackageReference Include="Swashbuckle.AspNetCore.Swagger" Version="7.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="7.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="7.0.0" />
</ItemGroup>
<ItemGroup>
2024-12-23 09:12:26 +00:00
<ProjectReference Include="..\data\data.csproj" />
2024-12-05 09:30:01 +00:00
<ProjectReference Include="..\domain\domain.csproj" />
</ItemGroup>
</Project>