This commit is contained in:
2025-10-27 17:39:18 -04:00
commit 31f723bea4
1579 changed files with 642409 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
namespace Prefab.Tests.Infrastructure;
/// <summary>
/// Configures the reusable harness with the desired run mode and optional knobs.
/// </summary>
/// <param name="Mode">The execution mode (debug or ephemeral).</param>
/// <param name="EnableAspireDashboard">True to keep the Aspire dashboard enabled.</param>
/// <param name="DisablePortRandomization">True to disable randomized ports in Aspire.</param>
public sealed record PrefabHarnessOptions(
RunMode Mode,
bool EnableAspireDashboard = false,
bool DisablePortRandomization = false);