6 references to CaptureProfileDelayOption
aspire (5)
Commands\RootCommand.cs (1)
199Options.Add(CaptureProfileDelayOption);
Commands\RunCommand.cs (2)
176var 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)
41var captureProfileDelayOption = new Option<int>(AspireRootCommand.CaptureProfileDelayOption.Name)
Aspire.Cli.Tests (1)
Commands\RootCommandTests.cs (1)
246Assert.Equal(1, result.GetValue(RootCommand.CaptureProfileDelayOption));