Microsoft.VisualStudio.Project.SolutionListenerForBuildDependencyUpdate.OnAfterOpenSolution C# (CSharp) Method

OnAfterOpenSolution() public method

Called at load time when solution has finished opening.
public OnAfterOpenSolution ( object pUnkReserved, int fNewSolution ) : int
pUnkReserved object reserved
fNewSolution int true if this is a new solution
return int
        public override int OnAfterOpenSolution(object pUnkReserved, int fNewSolution)
        {
            // Enum all sub project and add to dependeny list
            UpdateDependencyListWithSubProjects(null);

            return VSConstants.S_OK;
        }