INNER CODE UNIT · C#

BaseBlueprintPackager

aws/aws-lambda-dotnet · Blueprints/BlueprintPackager/BaseBlueprintPackager.cs:14

    public abstract class BaseBlueprintPackager
    {
        protected string _blueprintRoot;
        protected IList<string> _excludeBlueprints;

        /// <summary>
        /// Construct a new BaseBlueprintPackager.
        /// </summary>
        /// <param name="blueprintRoot">root to look for blueprint-manifest.json in</param>
        /// <param name="excludeBlueprints">names of blueprints to exclude from this BaseBlueprintPackager</param>
        public BaseBlueprintPackager(string blueprintRoot, IList<string> excludeBlueprints = null)
        {
            if (excludeBlueprints == null)
            {
                excludeBlueprints = new List<string>();
            }

            this._blueprintRoot = blueprintRoot;

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…