0
0
MyDarling/MyDarling.csproj

22 lines
899 B
XML
Raw Normal View History

2023-01-31 14:54:32 +03:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
2024-01-29 14:36:59 +03:00
<TargetFramework>net8.0</TargetFramework>
2023-01-31 14:54:32 +03:00
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
2024-01-29 16:30:07 +03:00
<InvariantGlobalization>false</InvariantGlobalization>
2023-01-31 14:54:32 +03:00
</PropertyGroup>
<ItemGroup>
2024-01-29 14:36:59 +03:00
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.1">
2023-01-31 14:54:32 +03:00
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
2024-01-29 14:36:59 +03:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.1" />
<PackageReference Include="SkiaSharp" Version="2.88.7" />
<PackageReference Include="SkiaSharp.NativeAssets.Linux.NoDependencies" Version="2.88.7" />
2023-01-31 14:54:32 +03:00
</ItemGroup>
</Project>