2025-10-11 11:33:46 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Google.Apis.Auth" Version="1.70.0" />
|
2025-10-12 18:28:14 +02:00
|
|
|
<PackageReference Include="Hangfire.AspNetCore" Version="1.8.21" />
|
|
|
|
|
<PackageReference Include="Hangfire.Core" Version="1.8.21" />
|
|
|
|
|
<PackageReference Include="Hangfire.SqlServer" Version="1.8.21" />
|
2025-10-11 11:33:46 +02:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.17" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.17">
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
|
|
|
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.12.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.10" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\BimAI.Application\BimAI.Application.csproj" />
|
|
|
|
|
<ProjectReference Include="..\BimAI.Infrastructure\BimAI.Infrastructure.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|