9 references to EnvironmentVariables
Microsoft.AspNetCore.Server.IntegrationTesting (9)
Common\DeploymentParameters.cs (5)
16EnvironmentVariables["ASPNETCORE_DETAILEDERRORS"] = "true"; 27EnvironmentVariables["ASPNETCORE_DETAILEDERRORS"] = "true"; 66EnvironmentVariables["ASPNETCORE_DETAILEDERRORS"] = "true"; 85foreach (var kvp in parameters.EnvironmentVariables) 87EnvironmentVariables.Add(kvp);
Deployers\RemoteWindowsDeployer\RemoteWindowsDeployer.cs (2)
173foreach (var envVariablePair in _deploymentParameters.EnvironmentVariables) 233var environmentVariables = string.Join("`,", _deploymentParameters.EnvironmentVariables.Select(envVariable => $"{envVariable.Key}={envVariable.Value}"));
Deployers\SelfHostDeployer.cs (2)
100DeploymentParameters.EnvironmentVariables["ASPNETCORE_CONTENTROOT"] = DeploymentParameters.ApplicationPath; 140AddEnvironmentVariablesToProcess(startInfo, DeploymentParameters.EnvironmentVariables);