13 references to GetPathWithForwardSlashes
NuGet.CommandLine.XPlat (6)
ListPackage\ListPackageJsonRenderer.cs (6)
100writer.WriteValue(PathUtility.GetPathWithForwardSlashes(listPackageArgs.ArgumentText)); 124writer.WriteValue(PathUtility.GetPathWithForwardSlashes(reportProblem.Project)); 130writer.WriteValue(PathUtility.GetPathWithForwardSlashes(reportProblem.Text)); 152writer.WriteValue(PathUtility.GetPathWithForwardSlashes(packageSource.Source)); 159writer.WriteValue(PathUtility.GetPathWithForwardSlashes(packageSource.Source)); 176writer.WriteValue(PathUtility.GetPathWithForwardSlashes(reportProject.ProjectPath));
NuGet.Commands (4)
RestoreCommand\LockFileBuilder.cs (1)
125var path = PathUtility.GetPathWithForwardSlashes(resolver.GetPackageDirectory(package.Id, package.Version));
RestoreCommand\OriginalCaseGlobalPackageFolder.cs (1)
144var forwardSlashPath = PathUtility.GetPathWithForwardSlashes(path);
RestoreCommand\Utility\LockFileUtils.cs (2)
607string relativePath = PathUtility.GetPathWithForwardSlashes(Path.Combine("bin", "placeholder", $"{localMatch.Library.Name}.dll")); 658var fixedPath = PathUtility.GetPathWithForwardSlashes(
NuGet.Common (2)
PathUtil\PathUtility.cs (2)
316return GetPathWithForwardSlashes(path); 510filename = GetPathWithForwardSlashes(filename);
NuGet.Packaging (1)
Rules\UpholdBuildConventionRule.cs (1)
63var normalizedFiles = files.Select(PathUtility.GetPathWithForwardSlashes);