2 implementations of IEnvironmentReader
aspire (2)
Utils\NpmInstallDetection.cs (2)
84
private sealed class ProcessEnvironmentReader :
IEnvironmentReader
94
private sealed class DictionaryEnvironmentReader(IReadOnlyDictionary<string, string?> environment) :
IEnvironmentReader
6 references to IEnvironmentReader
aspire (6)
Utils\NpmInstallDetection.cs (6)
28
private static readonly AsyncLocal<
IEnvironmentReader
?> s_environmentOverride = new();
37
var
env = s_environmentOverride.Value ?? ProcessEnvironmentReader.Instance;
58
var
env = s_environmentOverride.Value ?? ProcessEnvironmentReader.Instance;
66
var
env = s_environmentOverride.Value ?? ProcessEnvironmentReader.Instance;
74
var
previous = s_environmentOverride.Value;
102
private sealed class EnvironmentOverrideScope(
IEnvironmentReader
? previous) : IDisposable