2024-11-17 22:51:54 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.8"/>
|
2025-02-02 23:33:00 +01:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.12">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.12" />
|
2024-11-17 22:51:54 +01:00
|
|
|
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0"/>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-02-01 01:02:27 +01:00
|
|
|
<ProjectReference Include="..\DotBased.AspNet.Authority.EFCore\DotBased.AspNet.Authority.EFCore.csproj" />
|
2024-12-21 15:30:17 +01:00
|
|
|
<ProjectReference Include="..\DotBased.AspNet.Authority\DotBased.AspNet.Authority.csproj" />
|
2024-11-17 22:51:54 +01:00
|
|
|
<ProjectReference Include="..\DotBased.Logging.MEL\DotBased.Logging.MEL.csproj" />
|
|
|
|
<ProjectReference Include="..\DotBased.Logging.Serilog\DotBased.Logging.Serilog.csproj" />
|
|
|
|
<ProjectReference Include="..\DotBased\DotBased.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|