1 write to CommandLineArgs
dotnet (1)
Commands\Run\LaunchSettings\ProjectLaunchSettingsProvider.cs (1)
30
config.
CommandLineArgs
= commandLineArgsValue;
5 references to CommandLineArgs
dotnet (5)
Commands\Run\LaunchSettings\ProjectLaunchSettingsProvider.cs (1)
23
if (string.Equals(property.Name, nameof(ProjectLaunchSettingsModel.
CommandLineArgs
), StringComparison.OrdinalIgnoreCase))
Commands\Run\RunCommand.cs (2)
204
if (!NoLaunchProfileArguments && string.IsNullOrEmpty(targetCommand.CommandArgs) && launchSettings.
CommandLineArgs
!= null)
206
targetCommand.SetCommandArgs(launchSettings.
CommandLineArgs
);
Commands\Test\MTP\TestApplication.cs (2)
114
!string.IsNullOrEmpty(Module.LaunchSettings.
CommandLineArgs
))
116
processStartInfo.Arguments = $"{processStartInfo.Arguments} {Module.LaunchSettings.
CommandLineArgs
}";