public static QuarkConfigurationBuilder WithQuarkFiles(
            this QuarkConfigurationBuilder builder,
            string path)
        {
            if (builder is null)
            {
                throw new ArgumentNullException(nameof(builder));
            }

            if (string.IsNullOrWhiteSpace(path))
            {
                throw new ArgumentException("message", nameof(path));
            }

            builder.AddFileLocation(path);

            return(builder);
        }