3 overrides of
System.Diagnostics.Process (1)
System\Collections\Specialized\StringDictionaryWrapper.cs (1)
20public override string? this[string key]
System.Net.Mail (2)
System\Net\TrackingStringDictionary.cs (1)
57public override string? this[string key]
System\Net\TrackingValidationObjectDictionary.cs (1)
148public override string? this[string key]
32 writes to
aspire (10)
DotNet\DotNetCliExecutionFactory.cs (9)
57startInfo.EnvironmentVariables[envKvp.Key] = envKvp.Value; 70startInfo.EnvironmentVariables[KnownConfigNames.CliProcessId] = GetCurrentProcessId().ToString(CultureInfo.InvariantCulture); 74startInfo.EnvironmentVariables[KnownConfigNames.CliProcessStarted] = GetCurrentProcessStartTimeUnixSeconds().ToString(CultureInfo.InvariantCulture); 77startInfo.EnvironmentVariables[KnownConfigNames.MsBuildTerminalLogger] = "false"; 80startInfo.EnvironmentVariables["DOTNET_NOLOGO"] = "1"; 89startInfo.EnvironmentVariables[KnownConfigNames.DebugSessionInfo] = debugSessionInfo; 118startInfo.EnvironmentVariables["DOTNET_ROOT"] = sdkInstallPath; 121startInfo.EnvironmentVariables["DOTNET_MULTILEVEL_LOOKUP"] = "0"; 125startInfo.EnvironmentVariables["PATH"] = $"{sdkInstallPath}{Path.PathSeparator}{currentPath}";
Projects\ProcessGuestLauncher.cs (1)
63startInfo.EnvironmentVariables[key] = value;
csc (1)
src\roslyn\src\Compilers\Shared\BuildServerConnection.cs (1)
647startInfo.EnvironmentVariables[kvp.Key] = kvp.Value;
dotnet (1)
src\sdk\artifacts\.packages\microsoft.codeanalysis.buildclient\5.9.0-1.26307.102\contentFiles\cs\net11.0\BuildServerConnection.cs (1)
647startInfo.EnvironmentVariables[kvp.Key] = kvp.Value;
dotnet-format (1)
Utilities\ProcessRunner.cs (1)
186processStartInfo.EnvironmentVariables[pair.Key] = pair.Value;
Microsoft.Agents.AI.ProjectTemplates.Tests (1)
test\ProjectTemplates\Infrastructure\TestCommand.cs (1)
48processStartInfo.EnvironmentVariables[key] = value;
Microsoft.Build.Framework (1)
MultiThreadedTaskEnvironmentDriver.cs (1)
122startInfo.EnvironmentVariables[kvp.Key] = kvp.Value;
Microsoft.Build.Tasks.CodeAnalysis (1)
src\roslyn\src\Compilers\Shared\BuildServerConnection.cs (1)
647startInfo.EnvironmentVariables[kvp.Key] = kvp.Value;
Microsoft.Extensions.AI.Templates.Tests (1)
test\ProjectTemplates\Infrastructure\TestCommand.cs (1)
48processStartInfo.EnvironmentVariables[key] = value;
Microsoft.McpServer.ProjectTemplates.Tests (1)
test\ProjectTemplates\Infrastructure\TestCommand.cs (1)
48processStartInfo.EnvironmentVariables[key] = value;
Microsoft.TestPlatform.VsTestConsole.TranslationLayer (1)
VsTestConsoleProcessManager.cs (1)
160info.EnvironmentVariables[envVariable.Key] = envVariable.Value?.ToString();
System.Configuration.ConfigurationManager (1)
System\Diagnostics\TraceUtils.cs (1)
210dest[key] = source[key];
System.Net.Mail (9)
System\Net\Mail\MailMessage.cs (1)
380wholeView.ContentType.Parameters["type"] = view.ContentType.MediaType;
System\Net\Mime\ContentDisposition.cs (1)
103Parameters[FileNameKey] = value;
System\Net\Mime\ContentType.cs (3)
66Parameters["boundary"] = value; 82Parameters["charset"] = value; 134Parameters["name"] = value;
System\Net\TrackingStringDictionary.cs (1)
67base[key] = value;
System\Net\TrackingValidationObjectDictionary.cs (3)
78base[key] = valueToAdd.ToString(); 89base[key] = value; 140base[key] = value.ToString();
System.Net.Ping (1)
System\Net\NetworkInformation\Ping.PingUtility.cs (1)
47psi.EnvironmentVariables["LC_ALL"] = "C";
vbc (1)
src\roslyn\src\Compilers\Shared\BuildServerConnection.cs (1)
647startInfo.EnvironmentVariables[kvp.Key] = kvp.Value;
VBCSCompiler (1)
src\roslyn\src\Compilers\Shared\BuildServerConnection.cs (1)
647startInfo.EnvironmentVariables[kvp.Key] = kvp.Value;
15 references to
aspire (1)
DotNet\DotNetCliExecutionFactory.cs (1)
124var currentPath = startInfo.EnvironmentVariables["PATH"] ?? Environment.GetEnvironmentVariable("PATH") ?? string.Empty;
Microsoft.Build.Tasks.Core (5)
ManifestUtil\MetadataReader.cs (5)
91public string Name => Attributes[nameof(Name)]; 92public string Version => Attributes[nameof(Version)]; 93public string PublicKeyToken => Attributes[nameof(PublicKeyToken)]; 94public string Culture => Attributes[nameof(Culture)]; 95public string ProcessorArchitecture => Attributes[nameof(ProcessorArchitecture)];
System.Configuration.ConfigurationManager (1)
System\Diagnostics\TraceUtils.cs (1)
210dest[key] = source[key];
System.Diagnostics.TextWriterTraceListener (1)
System\Diagnostics\DelimitedListTraceListener.cs (1)
54string? delimiter = Attributes[DelimiterKey];
System.Net.Mail (7)
System\Net\Mime\ContentDisposition.cs (1)
94get { return Parameters[FileNameKey]; }
System\Net\Mime\ContentType.cs (3)
57get { return Parameters["boundary"]; } 73get { return Parameters["charset"]; } 118string? value = Parameters["name"];
System\Net\TrackingStringDictionary.cs (1)
59get { return base[key]; }
System\Net\TrackingValidationObjectDictionary.cs (2)
126return base[key]; 154return base[key];