14 references to StartInfo
Microsoft.AspNetCore.Tests (11)
WebApplicationTests.cs (11)
642options.StartInfo.WorkingDirectory = tmpDir.FullName; 667options.StartInfo.WorkingDirectory = Environment.SystemDirectory; 1010options.StartInfo.EnvironmentVariables.Add("one", "unprefixed_one"); 1011options.StartInfo.EnvironmentVariables.Add("two", "unprefixed_two"); 1012options.StartInfo.EnvironmentVariables.Add("DOTNET_one", "DOTNET_one"); 1013options.StartInfo.EnvironmentVariables.Add("DOTNET_two", "DOTNET_two"); 1014options.StartInfo.EnvironmentVariables.Add("DOTNET_three", "DOTNET_three"); 1015options.StartInfo.EnvironmentVariables.Add("ASPNETCORE_one", "ASPNETCORE_one"); 1016options.StartInfo.EnvironmentVariables.Add("ASPNETCORE_two", "ASPNETCORE_two"); 1017options.StartInfo.EnvironmentVariables.Add("ASPNETCORE_three", "ASPNETCORE_three"); 1018options.StartInfo.EnvironmentVariables.Add("ASPNETCORE_four", "ASPNETCORE_four");
Microsoft.DotNet.RemoteExecutor (1)
RemoteExecutor.cs (1)
441ProcessStartInfo psi = options.StartInfo;
Microsoft.ML.CpuMath.UnitTests (2)
UnitTests.cs (2)
994options.StartInfo.Environment.Add(item.Key, item.Value); 997options.StartInfo.WorkingDirectory = System.IO.Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);