10 writes to BasePath
Microsoft.Build.Tasks.Core (1)
CombinePath.cs (1)
59
BasePath
= String.Empty;
Microsoft.Build.Tasks.UnitTests (9)
CombinePath_Tests.cs (9)
28
t.
BasePath
= Path.Combine("abc", "def");
48
t.
BasePath
= Path.Combine("abc", "def");
78
t.
BasePath
= NativeMethodsShared.IsWindows ? @"c:\abc\def" : "/abc/def";
98
t.
BasePath
= NativeMethodsShared.IsWindows ? @"\\fileserver\public" : "/rootdir/public";
130
t.
BasePath
= @"c:\abc\def\";
138
t.
BasePath
= "/abc/def/";
178
t.
BasePath
= @"c:\abc\def";
195
t.
BasePath
= @"c:\abc\def";
213
t.
BasePath
= @"c:\abc\def";
5 references to BasePath
Microsoft.Build.Tasks.Core (2)
CombinePath.cs (2)
57
if (
BasePath
== null)
70
combinedPath.ItemSpec = Path.Combine(
BasePath
, path.ItemSpec);
Microsoft.Build.Tasks.UnitTests (3)
CombinePath_Tests.cs (3)
30
string fullPath1 = Path.Combine(t.
BasePath
, path1);
32
string fullPath2 = Path.Combine(t.
BasePath
, path2);
81
string fullPath2 = Path.Combine(t.
BasePath
, path2);