<Project Sdk="Microsoft.NET.Sdk.Web">

  <PropertyGroup>
    <TargetFramework>net8.0</TargetFramework>
    <Nullable>enable</Nullable>
    <ImplicitUsings>enable</ImplicitUsings>
    <GenerateDocumentationFile>True</GenerateDocumentationFile>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="Autofac.Extensions.DependencyInjection" Version="9.0.0" />
    <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.4" />
    <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
  </ItemGroup>

  <ItemGroup>
    <ProjectReference Include="..\..\Core\Long.Core\Long.Core.csproj" />
    <ProjectReference Include="..\..\Core\Long.Utils\Long.Utils.csproj" />
    <ProjectReference Include="..\..\Lib\Long.Common\Long.Common.csproj" />
    <ProjectReference Include="..\..\Lib\Long.Service\Long.Service.csproj" />
  </ItemGroup>

</Project>