2 writes to dotnetRoots
Microsoft.NET.ProjectData.Tasks (2)
CachePathResolver.cs (2)
30
this.
dotnetRoots
= ResolveDotNetRoots();
41
this.
dotnetRoots
= dotnetRoots;
6 references to dotnetRoots
Microsoft.NET.ProjectData.Tasks (6)
CachePathResolver.cs (6)
61
for (int i = 0; i < this.
dotnetRoots
.Length; i++)
63
if (absolutePath.StartsWith(this.
dotnetRoots
[i], this.pathsComparison))
65
string portable = PathSentinels.Dotnet + "/" + absolutePath.Substring(this.
dotnetRoots
[i].Length).Replace('\\', '/');
153
for (int i = 0; i < this.
dotnetRoots
.Length; i++)
155
int idx = text.IndexOf(this.
dotnetRoots
[i], this.pathsComparison);
158
string portable = FormatEmbedded(text, idx, PathSentinels.Dotnet, idx + this.
dotnetRoots
[i].Length);