mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
Standardized property naming in user-related entities to use 'Id' suffix (e.g., UserAccountId). Moved and updated repository interfaces and implementations to the DataAccessLayer.Repositories namespace. Refactored DBSeed seeders to use repository classes and improved structure. Updated .gitignore and project references
22 lines
639 B
XML
22 lines
639 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="idunno.Password.Generator" Version="1.0.1" />
|
|
<PackageReference
|
|
Include="Konscious.Security.Cryptography.Argon2"
|
|
Version="1.3.1"
|
|
/>
|
|
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.1.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DataAccessLayer\DataAccessLayer.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|