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

@@ -18,7 +18,7 @@ public abstract class NetworkIsolatedTestBase : IAsyncLifetime
_monitor = new NetworkMonitor(OnNetworkAttempt);
}
public virtual async Task InitializeAsync()
public virtual async ValueTask InitializeAsync()
{
// Install network interception
await _monitor.StartMonitoringAsync();
@@ -30,7 +30,7 @@ public abstract class NetworkIsolatedTestBase : IAsyncLifetime
_monitor.BlockDns();
}
public virtual async Task DisposeAsync()
public virtual async ValueTask DisposeAsync()
{
await _monitor.StopMonitoringAsync();
@@ -146,3 +146,7 @@ public sealed class NetworkIsolationViolationException : Exception
{
public NetworkIsolationViolationException(string message) : base(message) { }
}

View File

@@ -2,13 +2,19 @@
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<OutputType>Exe</OutputType>
<UseAppHost>true</UseAppHost>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="xunit" PrivateAssets="all" />
<PackageReference Include="xunit.v3.assert" PrivateAssets="all" />
<PackageReference Include="xunit.v3.core" PrivateAssets="all" />
</ItemGroup>
</Project>