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