-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProjectPackages.cs
96 lines (88 loc) · 3.21 KB
/
ProjectPackages.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace NuSpecHelper
{
class ProjectPackages
{
public FileInfo ConfigFile;
public ProjectPackages(FileInfo found)
{
ConfigFile = found;
}
private List<PackageIdentity> _RequiredPackages;
public List<PackageIdentity> RequiredPackages
{
get
{
if (_RequiredPackages == null)
Init();
return _RequiredPackages;
}
}
private void Init()
{
_RequiredPackages = new List<PackageIdentity>();
using (var sr = ConfigFile.OpenText())
{
var content = sr.ReadToEnd();
if (ConfigFile.Name == "packages.config")
{
string pattern = @"<package id=""(?<Name>.*)"" version=""(?<Version>.*)"" targetFramework";
const RegexOptions regexOptions = RegexOptions.None;
var regex = new Regex(pattern, regexOptions);
foreach (Match mtch in regex.Matches(content))
{
var p = new PackageIdentity()
{
Id = mtch.Groups[@"Name"].Value,
Version = mtch.Groups[@"Version"].Value
};
_RequiredPackages.Add(p);
}
}
else if (ConfigFile.Extension == ".vcxproj")
{
var found = new List<string>();
string pattern = @"<HintPath>\.\.\\packages\\(?<Name>[A-Za-z\.]*)\.(?<Version>[\d-V\.]*)\\(.*)</HintPath>";
const RegexOptions regexOptions = RegexOptions.None;
var regex = new Regex(pattern, regexOptions);
foreach (Match mtch in regex.Matches(content))
{
var p = new PackageIdentity()
{
Id = mtch.Groups[@"Name"].Value,
Version = mtch.Groups[@"Version"].Value
};
if (!found.Contains(p.FullName))
{
_RequiredPackages.Add(p);
found.Add(p.FullName);
}
}
}
}
}
internal static IEnumerable<ProjectPackages> GetFromDir(DirectoryInfo dir)
{
if (dir.FullName.Contains("XbimWebUI"))
yield break;
foreach (var found in dir.GetFiles(@"*packages.config"))
{
yield return new ProjectPackages(found);
}
foreach (var found in dir.GetFiles(@"*.vcxproj"))
{
yield return new ProjectPackages(found);
}
foreach (var subFound in dir.EnumerateDirectories().SelectMany(GetFromDir))
{
yield return subFound;
}
}
}
}