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]
40 writes to
HelixTestRunner (2)
ProcessUtil.cs (2)
107process.StartInfo.EnvironmentVariables["COMPlus_DbgEnableMiniDump"] = "1"; 108process.StartInfo.EnvironmentVariables["COMPlus_DbgMiniDumpName"] = Path.Combine(dumpDirectoryPath, $"{Path.GetFileName(filename)}.%d.dmp");
InteropTests (3)
src\Shared\Process\ProcessEx.cs (3)
118startInfo.EnvironmentVariables[envVar.Key] = envVar.Value; 122startInfo.EnvironmentVariables["NUGET_PACKAGES"] = NUGET_PACKAGES; 126startInfo.EnvironmentVariables["NUGET_FALLBACK_PACKAGES"] = Environment.GetEnvironmentVariable("NUGET_FALLBACK_PACKAGES");
Microsoft.AspNetCore.Server.IntegrationTesting (3)
src\Shared\Process\ProcessEx.cs (3)
118startInfo.EnvironmentVariables[envVar.Key] = envVar.Value; 122startInfo.EnvironmentVariables["NUGET_PACKAGES"] = NUGET_PACKAGES; 126startInfo.EnvironmentVariables["NUGET_FALLBACK_PACKAGES"] = Environment.GetEnvironmentVariable("NUGET_FALLBACK_PACKAGES");
Microsoft.DotNet.Open.Api.Tools.Tests (1)
ProcessEx.cs (1)
72startInfo.EnvironmentVariables[envVar.Key] = envVar.Value;
Microsoft.Extensions.ApiDescription.Client.Tests (3)
src\Shared\Process\ProcessEx.cs (3)
118startInfo.EnvironmentVariables[envVar.Key] = envVar.Value; 122startInfo.EnvironmentVariables["NUGET_PACKAGES"] = NUGET_PACKAGES; 126startInfo.EnvironmentVariables["NUGET_FALLBACK_PACKAGES"] = Environment.GetEnvironmentVariable("NUGET_FALLBACK_PACKAGES");
RunTests (1)
ProcessRunner.cs (1)
199processStartInfo.EnvironmentVariables[pair.Key] = pair.Value;
System.Configuration.ConfigurationManager (1)
System\Diagnostics\TraceUtils.cs (1)
210dest[key] = source[key];
System.Net.Mail (9)
System\Net\Mail\MailMessage.cs (1)
378wholeView.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";
System.Windows.Forms.IntegrationTests.Common (1)
TestHelpers.cs (1)
116startInfo.EnvironmentVariables["DOTNET_ROOT"] = dotnetPath;
Templates.Blazor.Tests (3)
src\Shared\Process\ProcessEx.cs (3)
118startInfo.EnvironmentVariables[envVar.Key] = envVar.Value; 122startInfo.EnvironmentVariables["NUGET_PACKAGES"] = NUGET_PACKAGES; 126startInfo.EnvironmentVariables["NUGET_FALLBACK_PACKAGES"] = Environment.GetEnvironmentVariable("NUGET_FALLBACK_PACKAGES");
Templates.Blazor.WebAssembly.Auth.Tests (3)
src\Shared\Process\ProcessEx.cs (3)
118startInfo.EnvironmentVariables[envVar.Key] = envVar.Value; 122startInfo.EnvironmentVariables["NUGET_PACKAGES"] = NUGET_PACKAGES; 126startInfo.EnvironmentVariables["NUGET_FALLBACK_PACKAGES"] = Environment.GetEnvironmentVariable("NUGET_FALLBACK_PACKAGES");
Templates.Blazor.WebAssembly.Tests (3)
src\Shared\Process\ProcessEx.cs (3)
118startInfo.EnvironmentVariables[envVar.Key] = envVar.Value; 122startInfo.EnvironmentVariables["NUGET_PACKAGES"] = NUGET_PACKAGES; 126startInfo.EnvironmentVariables["NUGET_FALLBACK_PACKAGES"] = Environment.GetEnvironmentVariable("NUGET_FALLBACK_PACKAGES");
Templates.Mvc.Tests (3)
src\Shared\Process\ProcessEx.cs (3)
118startInfo.EnvironmentVariables[envVar.Key] = envVar.Value; 122startInfo.EnvironmentVariables["NUGET_PACKAGES"] = NUGET_PACKAGES; 126startInfo.EnvironmentVariables["NUGET_FALLBACK_PACKAGES"] = Environment.GetEnvironmentVariable("NUGET_FALLBACK_PACKAGES");
Templates.Tests (3)
src\Shared\Process\ProcessEx.cs (3)
118startInfo.EnvironmentVariables[envVar.Key] = envVar.Value; 122startInfo.EnvironmentVariables["NUGET_PACKAGES"] = NUGET_PACKAGES; 126startInfo.EnvironmentVariables["NUGET_FALLBACK_PACKAGES"] = Environment.GetEnvironmentVariable("NUGET_FALLBACK_PACKAGES");
15 references to
Microsoft.Build.Tasks.Core (5)
ManifestUtil\MetadataReader.cs (5)
76public string Name => Attributes[nameof(Name)]; 77public string Version => Attributes[nameof(Version)]; 78public string PublicKeyToken => Attributes[nameof(PublicKeyToken)]; 79public string Culture => Attributes[nameof(Culture)]; 80public string ProcessorArchitecture => Attributes[nameof(ProcessorArchitecture)];
Microsoft.DotNet.SignTool (1)
src\BatchSignUtil.cs (1)
432string path = processStartInfo.EnvironmentVariables["PATH"];
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];