public ProductConfig GetProductConfig()

in src/shared/ElastiBuildConfig.cs [23:29]


        public ProductConfig GetProductConfig(string targetName)
        {
            if (!Products.TryGetValue(targetName, out ProductConfig pc))
                throw new ArgumentException($"Unable to find product '{targetName}'");

            return pc;
        }