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