8 references to CaptureProfileOption
aspire (5)
Commands\RootCommand.cs (1)
197Options.Add(CaptureProfileOption);
Commands\RunCommand.cs (2)
175var captureProfile = parseResult.GetValue(RootCommand.CaptureProfileOption); 1382var captureProfile = parseResult.GetValue(RootCommand.CaptureProfileOption);
Commands\StartCommand.cs (1)
64var captureProfile = parseResult.GetValue(RootCommand.CaptureProfileOption);
Profiling\ProfileCaptureOptions.cs (1)
39var captureProfileOption = new Option<bool>(AspireRootCommand.CaptureProfileOption.Name);
Aspire.Cli.Tests (3)
Commands\ParseResultHelperTests.cs (2)
225Assert.True(childParseResult.GetValue(RootCommand.CaptureProfileOption)); 248Assert.True(childParseResult.GetValue(RootCommand.CaptureProfileOption));
Commands\RootCommandTests.cs (1)
244Assert.True(result.GetValue(RootCommand.CaptureProfileOption));