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