2025-11-05 20:50:25 +01:00
|
|
|
|
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2025-11-19 12:33:37 +01:00
|
|
|
<TargetFramework>net10.0</TargetFramework>
|
2025-11-05 20:50:25 +01:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2025-11-19 12:33:37 +01:00
|
|
|
<LangVersion>13.0</LangVersion>
|
2025-11-05 20:50:25 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\DiunaBI.Domain\DiunaBI.Domain.csproj" />
|
|
|
|
|
<ProjectReference Include="..\DiunaBI.Application\DiunaBI.Application.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-11-19 12:33:37 +01:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.0">
|
2025-11-05 20:50:25 +01:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2025-11-19 12:33:37 +01:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.0" />
|
2025-11-05 20:50:25 +01:00
|
|
|
<PackageReference Include="Google.Apis.Sheets.v4" Version="1.68.0.3525" />
|
|
|
|
|
<PackageReference Include="Google.Apis.Drive.v3" Version="1.68.0.3490" />
|
2025-11-19 12:33:37 +01:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.0" />
|
2025-12-02 15:35:04 +01:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="10.0.0" />
|
2025-11-05 20:50:25 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|