3 writes to CommandLineArgs
Microsoft.DotNet.ProjectTools (3)
LaunchSettings\ExecutableLaunchProfileParser.cs (1)
41CommandLineArgs = ParseCommandLineArgs(profile.CommandLineArgs, evaluateExpression, expandCommandLineArgs),
LaunchSettings\ProjectLaunchProfileParser.cs (2)
34CommandLineArgs = ParseCommandLineArgs(profile.CommandLineArgs, evaluateExpression, expandCommandLineArgs), 56CommandLineArgs = expandCommandLineArgs && profile.CommandLineArgs is not null
17 references to CommandLineArgs
dotnet-aot (6)
parent\dotnet\Commands\Run\AotRunCommand.cs (3)
133executableProfile.CommandLineArgs); 150profileResult.Profile?.CommandLineArgs, 225LaunchProfileParser.RequiresMSBuildExpansion(launchProfile?.CommandLineArgs)))
parent\dotnet\Commands\Test\MTP\MicrosoftTestingPlatformTestCommand.cs (1)
670AddParsedArguments(launchProfile.CommandLineArgs, parsedArguments);
parent\dotnet\Commands\Test\MTP\TestApplication.cs (2)
307!string.IsNullOrEmpty(Module.LaunchSettings.CommandLineArgs)) 309processStartInfo.Arguments = $"{processStartInfo.Arguments} {Module.LaunchSettings.CommandLineArgs}";
Microsoft.DotNet.ProjectTools (11)
Generated\361d1da7f942c932\LaunchProfileJsonSerializerContext.ExecutableLaunchProfile.g.cs (2)
143Getter = static obj => ((global::Microsoft.DotNet.ProjectTools.LaunchProfile)obj).CommandLineArgs, 196writer.WriteString(PropName_commandLineArgs, ((global::Microsoft.DotNet.ProjectTools.LaunchProfile)value).CommandLineArgs);
Generated\361d1da7f942c932\LaunchProfileJsonSerializerContext.ProjectLaunchProfile.g.cs (2)
160Getter = static obj => ((global::Microsoft.DotNet.ProjectTools.LaunchProfile)obj).CommandLineArgs, 214writer.WriteString(PropName_commandLineArgs, ((global::Microsoft.DotNet.ProjectTools.LaunchProfile)value).CommandLineArgs);
LaunchSettings\ExecutableLaunchProfileParser.cs (2)
41CommandLineArgs = ParseCommandLineArgs(profile.CommandLineArgs, evaluateExpression, expandCommandLineArgs), 51|| (includeCommandLineArgs && LaunchProfileParser.RequiresMSBuildExpansion(profile.CommandLineArgs))
LaunchSettings\ProjectLaunchProfileParser.cs (5)
34CommandLineArgs = ParseCommandLineArgs(profile.CommandLineArgs, evaluateExpression, expandCommandLineArgs), 44=> (includeCommandLineArgs && LaunchProfileParser.RequiresMSBuildExpansion(profile.CommandLineArgs)) 56CommandLineArgs = expandCommandLineArgs && profile.CommandLineArgs is not null 57? ExpandMSBuildProperties(profile.CommandLineArgs, evaluateExpression) 58: profile.CommandLineArgs,