public static IConfigurationBuilder AddSystemsManager()

in src/Amazon.Extensions.Configuration.SystemsManager/SystemsManagerExtensions.cs [109:114]


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

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