11 instantiations of LaunchArgument
Aspire.Dashboard (3)
Model\ResourceSourceViewModel.cs (3)
57.Select((arg, i) => new LaunchArgument(arg, IsShown: !areArgumentsSensitive[i])) 68return new CommandLineInfo(Arguments: launchArguments.Select(arg => new LaunchArgument(arg, true)).ToList(), ArgumentsString: argumentsString, TooltipString: argumentsString); 73var arguments = executableArguments.IsDefaultOrEmpty ? [] : executableArguments.Select(arg => new LaunchArgument(arg, true)).ToList();
Aspire.Dashboard.Tests (8)
Model\ResourceSourceViewModelTests.cs (8)
79contentAfterValue: [new LaunchArgument("arg2", true)], 96contentAfterValue: [new LaunchArgument("arg2", true), new LaunchArgument("--key", true), new LaunchArgument("secret", false), new LaunchArgument("secret2", false), new LaunchArgument("notsecret", true)], 128contentAfterValue: [new LaunchArgument("arg1", true), new LaunchArgument("arg2", true)],
3 references to LaunchArgument
Aspire.Dashboard (3)
Model\ResourceSourceViewModel.cs (3)
8public class ResourceSourceViewModel(string value, List<LaunchArgument>? contentAfterValue, string valueToVisualize, string tooltip) 11public List<LaunchArgument>? ContentAfterValue { get; } = contentAfterValue; 90private record CommandLineInfo(List<LaunchArgument> Arguments, string ArgumentsString, string TooltipString);