Den is the private cloud vault for your reminders, calendars and to-dos.
at main 793 B view raw
1<Project Sdk="Microsoft.NET.Sdk"> 2 3 <PropertyGroup> 4 <TargetFramework>net10.0</TargetFramework> 5 <ImplicitUsings>enable</ImplicitUsings> 6 <Nullable>enable</Nullable> 7 </PropertyGroup> 8 9 <ItemGroup> 10 <PackageReference Include="Aspire.Npgsql.EntityFrameworkCore.PostgreSQL" /> 11 <PackageReference Include="BCrypt.Net-Next" /> 12 <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" /> 13 <PackageReference Include="Microsoft.EntityFrameworkCore.Design"> 14 <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> 15 <PrivateAssets>all</PrivateAssets> 16 </PackageReference> 17 </ItemGroup> 18 19 <ItemGroup> 20 <ProjectReference Include="..\Den.Application\Den.Application.csproj" /> 21 </ItemGroup> 22 23</Project>