Files
DiunaBI/DiunaBI.Infrastructure/DiunaBI.Infrastructure.csproj

31 lines
1.2 KiB
XML
Raw Normal View History

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" />
</ItemGroup>
2025-12-04 22:20:00 +01:00
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
2025-11-05 20:50:25 +01:00
</Project>