Microsoft.VisualStudio.Project.ProjectNode.AddBuildDependency C# (CSharp) Method

AddBuildDependency() public method

public AddBuildDependency ( IVsBuildDependency dependency ) : void
dependency IVsBuildDependency
return void
        public virtual void AddBuildDependency(IVsBuildDependency dependency)
        {
            if (this.isClosed || dependency == null)
            {
                return;
            }

            if (!this.buildDependencyList.Contains(dependency))
            {
                this.buildDependencyList.Add(dependency);
            }
        }
ProjectNode