public static IConfigurationBuilder AddSystemsManager()

in src/Amazon.Extensions.Configuration.SystemsManager/SystemsManagerExtensions.cs [153:158]


        public static IConfigurationBuilder AddSystemsManager(this IConfigurationBuilder builder, string path)
        {
            if (path == null) throw new ArgumentNullException(nameof(path));

            return builder.AddSystemsManager(ConfigureSource(path, null));
        }