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

InitSccInfo() private method

Sets the scc info from the project file.
private InitSccInfo ( ) : void
return void
        private void InitSccInfo()
        {
            this.sccProjectName = this.GetProjectProperty(ProjectFileConstants.SccProjectName);
            this.sccLocalPath = this.GetProjectProperty(ProjectFileConstants.SccLocalPath);
            this.sccProvider = this.GetProjectProperty(ProjectFileConstants.SccProvider);
            this.sccAuxPath = this.GetProjectProperty(ProjectFileConstants.SccAuxPath);
        }
ProjectNode