12 lines
359 B
C#
12 lines
359 B
C#
namespace Engine.Core.Config;
|
|
|
|
public class SystemConfiguration : BasicConfiguration, IConfiguration
|
|
{
|
|
public SystemConfiguration()
|
|
{
|
|
foreach (System.Collections.DictionaryEntry entry in System.Environment.GetEnvironmentVariables())
|
|
if (entry is { Key: string key, Value: not null })
|
|
Set(key, entry.Value);
|
|
}
|
|
}
|