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)
26
t.
BasePath
= Path.Combine("abc", "def");
46
t.
BasePath
= Path.Combine("abc", "def");
76
t.
BasePath
= NativeMethodsShared.IsWindows ? @"c:\abc\def" : "/abc/def";
96
t.
BasePath
= NativeMethodsShared.IsWindows ? @"\\fileserver\public" : "/rootdir/public";
128
t.
BasePath
= @"c:\abc\def\";
136
t.
BasePath
= "/abc/def/";
176
t.
BasePath
= @"c:\abc\def";
193
t.
BasePath
= @"c:\abc\def";
211
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)
28
string fullPath1 = Path.Combine(t.
BasePath
, path1);
30
string fullPath2 = Path.Combine(t.
BasePath
, path2);
79
string fullPath2 = Path.Combine(t.
BasePath
, path2);