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

RemoveBuildDependency() public method

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

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