6 references to CaptureProfileDelayOption
aspire (5)
Commands\RootCommand.cs (1)
199
Options.Add(
CaptureProfileDelayOption
);
Commands\RunCommand.cs (2)
176
var captureProfileDelay = TimeSpan.FromSeconds(parseResult.GetValue(RootCommand.
CaptureProfileDelayOption
));
1384
? TimeSpan.FromSeconds(parseResult.GetValue(RootCommand.
CaptureProfileDelayOption
))
Commands\StartCommand.cs (1)
66
? TimeSpan.FromSeconds(parseResult.GetValue(RootCommand.
CaptureProfileDelayOption
))
Profiling\ProfileCaptureOptions.cs (1)
41
var captureProfileDelayOption = new Option<int>(AspireRootCommand.
CaptureProfileDelayOption
.Name)
Aspire.Cli.Tests (1)
Commands\RootCommandTests.cs (1)
246
Assert.Equal(1, result.GetValue(RootCommand.
CaptureProfileDelayOption
));