Bari.Plugins.VsCore.VisualStudio.DefaultProjectPathManagement.RegisterProjectFile C# (CSharp) Method

RegisterProjectFile() public method

Maps a project file to a project
public RegisterProjectFile ( Project project, SuiteRelativePath path ) : void
project Project The project model
path SuiteRelativePath Suite relative path to the visual studio project file
return void
        public void RegisterProjectFile(Project project, SuiteRelativePath path)
        {
            lock (sync)
            {
                map.Add(project, path);
            }
        }
DefaultProjectPathManagement