Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,19 +230,19 @@ dev(`devDependencies` — **앵커 있음**):
| JWT(강화 검증) | `Microsoft.IdentityModel.JsonWebTokens` | 8.22.0 |
| JWT(JWKS/디스커버리) | `Microsoft.IdentityModel.Protocols.OpenIdConnect` | 8.22.0 |
| Admin | `Keycloak.AuthServices.Sdk` | 2.7.0 |
| DI 추상화 | `Microsoft.Extensions.DependencyInjection.Abstractions` | 9.0.19 |
| DI 추상화 | `Microsoft.Extensions.DependencyInjection.Abstractions` | 9.0.20 |

dev(테스트 csproj — **앵커 있음**):

<!-- doc-guard: kind=dep source=dotnet/tests/Xzawed.Keycloak.Sdk.Tests/Xzawed.Keycloak.Sdk.Tests.csproj min=6 -->
| 의존성 | 좌표 | 버전 |
|---|---|---|
| 테스트 호스트 | `Microsoft.NET.Test.Sdk` | 18.9.0 |
| 테스트 호스트 | `Microsoft.NET.Test.Sdk` | 18.10.0 |
| 단위 테스트 | `xunit` | 2.9.3 |
| 테스트 어댑터 | `xunit.runner.visualstudio` | 4.0.0 |
| 커버리지 수집 | `coverlet.collector` | 10.0.1 |
| HTTP 목 | `WireMock.Net` | 2.15.0 |
| 통합 테스트 | `Testcontainers.Keycloak` | 4.14.0 |
| 통합 테스트 | `Testcontainers.Keycloak` | 4.15.0 |

전부 Apache-2.0/MIT(호환).

Expand Down
4 changes: 2 additions & 2 deletions dotnet/src/Xzawed.Keycloak.Sdk/Xzawed.Keycloak.Sdk.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
<PackageReference Include="Keycloak.AuthServices.Sdk" Version="2.7.0" />
<!-- AddKeycloak DI extension needs IServiceCollection/AddSingleton (DI.Abstractions), NOT IHttpClientFactory.
9.0.8 satisfies Keycloak.AuthServices.Sdk 2.7.0's transitive floor (>= 9.0.8); 9.0.x still supports net8.0. -->
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.19" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.400" PrivateAssets="All" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.20" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.401" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Xzawed.Keycloak.Sdk.Tests" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<NoWarn>$(NoWarn);CS1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.9.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.10.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="4.0.0" />
<!-- ⚠️ coverlet은 **컬렉터만** 참조한다. msbuild 통합(coverlet.msbuild)은 두 가지 이유로 뺐다:
Expand All @@ -20,7 +20,7 @@
조용한 동작 변경이 된다(10.0.1에서는 본문이 동일해 아직 무해). -->
<PackageReference Include="coverlet.collector" Version="10.0.1" />
<PackageReference Include="WireMock.Net" Version="2.15.0" />
<PackageReference Include="Testcontainers.Keycloak" Version="4.14.0" />
<PackageReference Include="Testcontainers.Keycloak" Version="4.15.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../../src/Xzawed.Keycloak.Sdk/Xzawed.Keycloak.Sdk.csproj" />
Expand Down
Loading