Frontend gaps fill work. Testing fixes work. Auditing in progress.

This commit is contained in:
StellaOps Bot
2025-12-30 01:22:58 +02:00
parent 1dc4bcbf10
commit 7a5210e2aa
928 changed files with 183942 additions and 3941 deletions

View File

@@ -28,7 +28,7 @@ public class PostgresOnlyStartupTests : IAsyncLifetime
private PostgreSqlContainer? _container;
private string? _connectionString;
public async Task InitializeAsync()
public async ValueTask InitializeAsync()
{
_container = new PostgreSqlBuilder()
.WithImage("postgres:16-alpine")
@@ -38,7 +38,7 @@ public class PostgresOnlyStartupTests : IAsyncLifetime
_connectionString = _container.GetConnectionString();
}
public async Task DisposeAsync()
public async ValueTask DisposeAsync()
{
if (_container != null)
{
@@ -246,3 +246,6 @@ public class PostgresOnlyStartupTests : IAsyncLifetime
#endregion
}

View File

@@ -19,7 +19,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="Npgsql" />
<PackageReference Include="xunit" />
<PackageReference Include="xunit.v3" />
<PackageReference Include="xunit.runner.visualstudio" >
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
@@ -40,3 +40,5 @@
</ItemGroup>
</Project>