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