Bari.Core.Build.BuildContext.AddTransformation C# (CSharp) Method

AddTransformation() public method

Adds a new graph transformation which will be executed before the builders
public AddTransformation ( Func transformation ) : void
transformation Func Transformation function, returns false to cancel the build process
return void
        public void AddTransformation(Func<ISet<EquatableEdge<IBuilder>>, bool> transformation)
        {
            graphTransformations.Add(transformation);
        }