10 writes to BasePath
Microsoft.Build.Tasks.Core (1)
CombinePath.cs (1)
59BasePath = String.Empty;
Microsoft.Build.Tasks.UnitTests (9)
CombinePath_Tests.cs (9)
26t.BasePath = Path.Combine("abc", "def"); 46t.BasePath = Path.Combine("abc", "def"); 76t.BasePath = NativeMethodsShared.IsWindows ? @"c:\abc\def" : "/abc/def"; 96t.BasePath = NativeMethodsShared.IsWindows ? @"\\fileserver\public" : "/rootdir/public"; 128t.BasePath = @"c:\abc\def\"; 136t.BasePath = "/abc/def/"; 176t.BasePath = @"c:\abc\def"; 193t.BasePath = @"c:\abc\def"; 211t.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)
28string fullPath1 = Path.Combine(t.BasePath, path1); 30string fullPath2 = Path.Combine(t.BasePath, path2); 79string fullPath2 = Path.Combine(t.BasePath, path2);