Fix build and code structure improvements. New but essential UI functionality. CI improvements. Documentation improvements. AI module improvements.
This commit is contained in:
@@ -391,8 +391,8 @@ public sealed class SamlConnectorResilienceTests
|
||||
|
||||
var user = new AuthorityUserDescriptor(
|
||||
subjectId: nameId,
|
||||
username: null,
|
||||
displayName: null,
|
||||
username: null!,
|
||||
displayName: null!,
|
||||
requiresPasswordReset: false,
|
||||
roles: Array.Empty<string>(),
|
||||
attributes: new System.Collections.Generic.Dictionary<string, string?> { ["issuer"] = issuer });
|
||||
|
||||
@@ -446,8 +446,8 @@ public sealed class SamlConnectorSecurityTests
|
||||
|
||||
var user = new AuthorityUserDescriptor(
|
||||
subjectId: nameId,
|
||||
username: null,
|
||||
displayName: null,
|
||||
username: null!,
|
||||
displayName: null!,
|
||||
requiresPasswordReset: false,
|
||||
roles: Array.Empty<string>(),
|
||||
attributes: new Dictionary<string, string?> { ["issuer"] = issuer });
|
||||
|
||||
@@ -14,13 +14,10 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="FluentAssertions" Version="8.0.1" />
|
||||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0" />
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
|
||||
<PackageReference Include="Moq" Version="4.20.72" />
|
||||
<PackageReference Include="xunit" Version="2.9.3" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1" />
|
||||
</ItemGroup>
|
||||
<PackageReference Include="FluentAssertions" />
|
||||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
|
||||
<PackageReference Include="Moq" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Update="Fixtures\**\*.xml">
|
||||
@@ -30,5 +27,4 @@
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user