23 references to FixFilePath
Microsoft.Build.Utilities.Core (21)
CommandLineBuilder.cs (1)
334
fileName = FileUtilities.
FixFilePath
(fileName);
FileMatcher.cs (2)
224
path = FileUtilities.
FixFilePath
(path);
588
filespec = FileUtilities.
FixFilePath
(filespec);
FileUtilities.cs (14)
221
fileSpec =
FixFilePath
(fileSpec);
245
return
FixFilePath
(path.Substring(start, stop - start));
259
return
FixFilePath
(start < stop && IsSlash(path[stop - 1]) ?
269
path =
FixFilePath
(path);
306
path =
FixFilePath
(path);
384
return
FixFilePath
(fullPath.Substring(0, i));
466
return
FixFilePath
(fullPath);
695
string directory = Path.GetDirectoryName(
FixFilePath
(fileSpec));
759
fileSpec =
FixFilePath
(EscapingUtilities.UnescapeAll(fileSpec));
861
File.Delete(
FixFilePath
(path));
888
path =
FixFilePath
(path);
1155
return
FixFilePath
(path);
1206
return
FixFilePath
(path);
1230
return Path.IsPathRooted(
FixFilePath
(path));
Modifiers.cs (1)
437
modifiedItemSpec = Path.GetFileNameWithoutExtension(
FixFilePath
(itemSpec));
TaskItem.cs (3)
85
_itemSpec = FileUtilities.
FixFilePath
(itemSpec);
165
_itemSpec = FileUtilities.
FixFilePath
(value);
184
_itemSpec = FileUtilities.
FixFilePath
(value);
Microsoft.Build.Utilities.UnitTests (2)
CommandLineBuilder_Tests.cs (2)
110
c.AppendFileNamesIfNotNull(new[] { "Form1.resx", FileUtilities.
FixFilePath
("built\\Form1.resources") }, ",");
114
c.ShouldBe(FileUtilities.
FixFilePath
(@"Form1.resx,built\Form1.resources"));