11 instantiations of LaunchArgument
Aspire.Dashboard (3)
Model\ResourceSourceViewModel.cs (3)
57
.Select((arg, i) => new
LaunchArgument
(arg, IsShown: !areArgumentsSensitive[i]))
68
return new CommandLineInfo(Arguments: launchArguments.Select(arg => new
LaunchArgument
(arg, true)).ToList(), ArgumentsString: argumentsString, TooltipString: argumentsString);
73
var arguments = executableArguments.IsDefaultOrEmpty ? [] : executableArguments.Select(arg => new
LaunchArgument
(arg, true)).ToList();
Aspire.Dashboard.Tests (8)
Model\ResourceSourceViewModelTests.cs (8)
79
contentAfterValue: [new
LaunchArgument
("arg2", true)],
96
contentAfterValue: [new
LaunchArgument
("arg2", true), new
LaunchArgument
("--key", true), new
LaunchArgument
("secret", false), new
LaunchArgument
("secret2", false), new
LaunchArgument
("notsecret", true)],
128
contentAfterValue: [new
LaunchArgument
("arg1", true), new
LaunchArgument
("arg2", true)],
6 references to LaunchArgument
Aspire.Dashboard (6)
Components_Pages_Resources_razor.g.cs (1)
2193
), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.List<global::Aspire.Dashboard.Model.
LaunchArgument
>>(
Components_ResourcesGridColumns_SourceColumnDisplay_razor.g.cs (2)
340
foreach (
var
launchArgument in ContentAfterValue)
412
public required List<
LaunchArgument
>? ContentAfterValue { get; set; }
Model\ResourceSourceViewModel.cs (3)
8
public class ResourceSourceViewModel(string value, List<
LaunchArgument
>? contentAfterValue, string valueToVisualize, string tooltip)
11
public List<
LaunchArgument
>? ContentAfterValue { get; } = contentAfterValue;
90
private record CommandLineInfo(List<
LaunchArgument
> Arguments, string ArgumentsString, string TooltipString);