Microsoft.VisualStudio.Project.SolutionListenerForBuildDependencyUpdate.OnAfterOpenSolution C# (CSharp) 메소드

OnAfterOpenSolution() 공개 메소드

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
리턴 int
        public override int OnAfterOpenSolution(object pUnkReserved, int fNewSolution)
        {
            // Enum all sub project and add to dependeny list
            UpdateDependencyListWithSubProjects(null);

            return VSConstants.S_OK;
        }