10 writes to Arguments
dotnet-MsiInstallation.Tests (1)
Framework\VMControl.cs (1)
354Arguments = args.ToList(),
Microsoft.NET.Build.Tests (1)
GivenThatWeWantToGenerateADepsFileForATool.cs (1)
230Arguments = dotnetArgs
Microsoft.NET.TestFramework (8)
Commands\DotnetCommand.cs (1)
18Arguments = args.ToList(),
Commands\MSBuildVersionCommand.cs (2)
17Arguments = { "-version" }, 26Arguments = { "msbuild", "-version" },
Commands\NuGetExeRestoreCommand.cs (1)
64Arguments =
Commands\RunExeCommand.cs (1)
26Arguments = args.ToList(),
Commands\TestCommand.cs (1)
106commandSpec.Arguments = Arguments.Concat(commandSpec.Arguments).ToList();
ToolsetInfo.cs (2)
231ret.Arguments = args.ToList(); 242ret.Arguments = newArgs;
4 references to Arguments
Microsoft.NET.TestFramework (4)
Commands\SdkCommandSpec.cs (2)
26return ArgumentEscaper.EscapeAndConcatenateArgArrayForProcessStart(Arguments); 44Arguments = doNotEscapeArguments ? string.Join(" ", Arguments) : EscapeArgs(),
Commands\TestCommand.cs (2)
106commandSpec.Arguments = Arguments.Concat(commandSpec.Arguments).ToList(); 173var display = $"{fileToShow} {string.Join(" ", spec.Arguments)}";