- Add placeholder User entity - Add DataAccess class with interface and add it as a service to the app. - Change background color of app as a test
17 lines
548 B
XML
17 lines
548 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Dapper" Version="2.1.35" />
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="8.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
|
|
<PackageReference Include="Npgsql" Version="8.0.2" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|