Bari.Plugins.VsCore.VisualStudio.DefaultProjectPathManagement.GetProjectFile C# (CSharp) Метод

GetProjectFile() публичный Метод

Gets the visual studio project file for a given project
public GetProjectFile ( Project project ) : SuiteRelativePath
project Project The project model
Результат SuiteRelativePath
        public SuiteRelativePath GetProjectFile(Project project)
        {
            lock (sync)
            {
                SuiteRelativePath result = null;
                map.TryGetValue(project, out result);
                return result;
            }
        }
DefaultProjectPathManagement