WebApi.csproj 897 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <GenerateDocumentationFile>True</GenerateDocumentationFile>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="Autofac.Extensions.DependencyInjection" Version="9.0.0" />
  10. <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.4" />
  11. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <ProjectReference Include="..\..\Core\Long.Core\Long.Core.csproj" />
  15. <ProjectReference Include="..\..\Core\Long.Utils\Long.Utils.csproj" />
  16. <ProjectReference Include="..\..\Lib\Long.Common\Long.Common.csproj" />
  17. <ProjectReference Include="..\..\Lib\Long.Service\Long.Service.csproj" />
  18. </ItemGroup>
  19. </Project>