dc9aa108a1
TaxBaik CI/CD / build-and-deploy (push) Failing after 16s
- Login.razor: BCrypt 기반 실제 비밀번호 검증 - TaxBaik.Admin.csproj: BCrypt.Net-Next 패키지 추가 - HttpContext.SignInAsync로 쿠키 인증 처리 주의: 아직 런타임 이슈 수정 필요 Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
20 lines
575 B
XML
20 lines
575 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\TaxBaik.Application\TaxBaik.Application.csproj" />
|
|
<ProjectReference Include="..\TaxBaik.Infrastructure\TaxBaik.Infrastructure.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MudBlazor" Version="6.9.4" />
|
|
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|