ranking app basic

This commit is contained in:
2023-08-25 11:43:59 +09:00
parent 95777f6143
commit 20fa850885
45 changed files with 2343 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>aspnet-RankingApp-4c431b3d-01c0-4833-aa25-9114e95a5131</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="6.0.20" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.20" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="6.0.20" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.20" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.20" />
</ItemGroup>
</Project>