Init
This commit is contained in:
12
Prefab.Tests/Infrastructure/PrefabHarnessOptions.cs
Normal file
12
Prefab.Tests/Infrastructure/PrefabHarnessOptions.cs
Normal 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);
|
||||
Reference in New Issue
Block a user