3 instantiations of LaunchArgument
Aspire.Dashboard (3)
Model\ResourceSourceViewModel.cs (3)
60.Select((arg, i) => new LaunchArgument(arg, IsShown: !areArgumentsSensitive[i])) 71return new CommandLineInfo(Arguments: launchArguments.Select(arg => new LaunchArgument(arg, true)).ToList(), ArgumentsString: argumentsString, TooltipString: argumentsString); 76var arguments = executableArguments.IsDefaultOrEmpty ? [] : executableArguments.Select(arg => new LaunchArgument(arg, true)).ToList();
6 references to LaunchArgument
Aspire.Dashboard (6)
Components_Pages_Resources_razor.g.cs (1)
2280), global::Microsoft.AspNetCore.Components.CompilerServices.RuntimeHelpers.TypeCheck<global::System.Collections.Generic.List<global::Aspire.Dashboard.Model.LaunchArgument>>(
Components_ResourcesGridColumns_SourceColumnDisplay_razor.g.cs (2)
370foreach (var launchArgument in ContentAfterValue) 442public required List<LaunchArgument>? ContentAfterValue { get; set; }
Model\ResourceSourceViewModel.cs (3)
11internal sealed record ResourceSourceViewModel(string value, List<LaunchArgument>? contentAfterValue, string valueToVisualize, string tooltip) 14public List<LaunchArgument>? ContentAfterValue { get; } = contentAfterValue; 85private record CommandLineInfo(List<LaunchArgument> Arguments, string ArgumentsString, string TooltipString);