コード例 #1
0
 /// <summary>
 /// Gets local dependencies from a local repository
 /// </summary>
 /// <returns></returns>
 public IEnumerable <DependencyDetail> GetDependenciesFromFileContents(string fileContents)
 {
     return(_fileManager.ParseVersionDetailsXml(fileContents));
 }
コード例 #2
0
 /// <summary>
 /// Gets local dependencies from a local repository
 /// </summary>
 /// <returns></returns>
 public IEnumerable <DependencyDetail> GetDependenciesFromFileContents(string fileContents, bool includePinned = true)
 {
     return(_fileManager.ParseVersionDetailsXml(fileContents, includePinned));
 }