2025-11-21 14:09:06 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2025-11-21 14:19:44 +01:00
|
|
|
<TargetFramework>net10.0</TargetFramework>
|
2025-11-21 14:09:06 +01:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Google.Apis.Auth" Version="1.70.0" />
|
|
|
|
|
<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-11-21 14:19:44 +01:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0-rc.1.25451.107" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.0-rc.1.25451.107">
|
2025-11-21 14:09:06 +01:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2025-11-21 14:19:44 +01:00
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.3.2" />
|
2025-11-21 14:09:06 +01:00
|
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.12.1" />
|
2025-11-21 14:19:44 +01:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.0-rc.1.25451.107" />
|
2025-11-21 14:09:06 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\BimAI.Application\BimAI.Application.csproj" />
|
|
|
|
|
<ProjectReference Include="..\BimAI.Infrastructure\BimAI.Infrastructure.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|