61 references to IsPathFullyQualified
aspire (5)
DotNet\DotNetCliRunner.cs (1)
331var fullBinlogDirectory = Path.IsPathFullyQualified(binlogDirectory)
Packaging\PackageSourceOverrideMappings.cs (1)
22if (Path.IsPathFullyQualified(source) ||
Projects\DotNetAppHostProject.cs (1)
1944=> Path.IsPathFullyQualified(path) ? path : Path.GetFullPath(Path.Combine(baseDirectory.FullName, path));
Utils\EnvironmentChecker\DcpDeveloperCertificateCache.cs (1)
22if (!Path.IsPathFullyQualified(cacheDirectory))
Utils\ReparsePoint.cs (1)
307if (Path.IsPathFullyQualified(normalizedTarget))
Aspire.Cli.Tests (3)
Projects\PrebuiltAppHostServerTests.cs (3)
767Assert.True(Path.IsPathFullyQualified(gpfValue), $"globalPackagesFolder value must be an absolute path. Got: {gpfValue}"); 826Assert.True(Path.IsPathFullyQualified(gpfValue), $"globalPackagesFolder value must be an absolute path. Got: {gpfValue}"); 949Assert.True(Path.IsPathFullyQualified(gpfValue), $"globalPackagesFolder value must be an absolute path. Got: {gpfValue}");
Aspire.Hosting.Browsers (1)
BrowserUserDataPathResolver.cs (1)
122var name = Path.IsPathRooted(browser) || Path.IsPathFullyQualified(browser)
Aspire.Hosting.Browsers.Tests (1)
src\Aspire.Hosting.Browsers\BrowserUserDataPathResolver.cs (1)
122var name = Path.IsPathRooted(browser) || Path.IsPathFullyQualified(browser)
Aspire.Hosting.Java.Tests (1)
AddJavaAppTests.cs (1)
987Assert.True(Path.IsPathFullyQualified(expected));
Aspire.Hosting.Radius.Tests (1)
Publishing\SealedSecretPublishTests.cs (1)
79Assert.True(Path.IsPathFullyQualified(resolved));
Aspire.Hosting.Rust.Tests (1)
CargoMetadataTests.cs (1)
309Assert.True(Path.IsPathFullyQualified(metadata.TargetDirectory));
Aspire.Hosting.Sdk.Tests (1)
AppHostSdkTargetsTests.cs (1)
262Assert.True(Path.IsPathFullyQualified(properties["_AspireResolvedCliPath"]));
dotnet (4)
Commands\NuGet\NuGetVirtualProjectBuilder.cs (1)
27if (!Path.IsPathFullyQualified(entryPointFilePath))
Commands\Project\Convert\ProjectConvertCommand.cs (2)
490if (Path.IsPathFullyQualified(project.Name)) 507if (!Path.IsPathFullyQualified(project.OriginalName))
Commands\Run\FileBasedAppRunPlan.cs (1)
448Path.IsPathFullyQualified(previousRunCommand) &&
dotnet-aot (1)
src\sdk\src\Cli\dotnet\Commands\Run\FileBasedAppRunPlan.cs (1)
448Path.IsPathFullyQualified(previousRunCommand) &&
dotnet-openapi (1)
Commands\BaseCommand.cs (1)
439return Path.IsPathFullyQualified(path)
Microsoft.Build.Framework (4)
FileUtilities.cs (1)
387if (NewPath.IsPathFullyQualified(path))
PathHelpers\AbsolutePath.cs (2)
92if (!Path.IsPathFullyQualified(path)) 138|| Path.IsPathFullyQualified(combined))
Utilities\TaskFactoryUtilities.cs (1)
298if (!isMultiThreadedBuild || Path.IsPathFullyQualified(path))
Microsoft.Build.Tasks.Git (1)
src\sourcelink\src\Common\Utilities\PathUtilities.cs (1)
87return Path.IsPathFullyQualified(path);
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
SyncedSource\FileBasedPrograms\ExternalHelpers.cs (1)
28=> Path.IsPathFullyQualified(path);
Microsoft.CodeAnalysis.ExternalAccess.HotReload (1)
Api\HotReloadMSBuildWorkspace.cs (1)
58Contract.ThrowIfFalse(projectPaths.All(Path.IsPathFullyQualified));
Microsoft.DotNet.HotReload.Watch (2)
src\sdk\src\Dotnet.Watch\HotReloadClient\Utilities\PathExtensions.cs (1)
14=> Path.IsPathFullyQualified(path);
src\sdk\src\Dotnet.Watch\HotReloadClient\Web\StaticWebAssetsManifest.cs (1)
162if (Path.IsPathFullyQualified(root))
Microsoft.DotNet.ProjectTools (1)
src\sdk\src\Cli\Microsoft.DotNet.FileBasedPrograms\ExternalHelpers.cs (1)
28=> Path.IsPathFullyQualified(path);
Microsoft.NET.Build.Containers (1)
ContentStore.cs (1)
96if (!string.IsNullOrEmpty(xdgCacheHome) && Path.IsPathFullyQualified(xdgCacheHome))
Microsoft.SourceLink.AzureDevOpsServer.Git (1)
src\sourcelink\src\Common\Utilities\PathUtilities.cs (1)
87return Path.IsPathFullyQualified(path);
Microsoft.SourceLink.AzureRepos.Git (1)
src\sourcelink\src\Common\Utilities\PathUtilities.cs (1)
87return Path.IsPathFullyQualified(path);
Microsoft.SourceLink.Bitbucket.Git (1)
src\sourcelink\src\Common\Utilities\PathUtilities.cs (1)
87return Path.IsPathFullyQualified(path);
Microsoft.SourceLink.Common (1)
src\sourcelink\src\Common\Utilities\PathUtilities.cs (1)
87return Path.IsPathFullyQualified(path);
Microsoft.SourceLink.Gitea (1)
src\sourcelink\src\Common\Utilities\PathUtilities.cs (1)
87return Path.IsPathFullyQualified(path);
Microsoft.SourceLink.Gitee (1)
src\sourcelink\src\Common\Utilities\PathUtilities.cs (1)
87return Path.IsPathFullyQualified(path);
Microsoft.SourceLink.GitHub (1)
src\sourcelink\src\Common\Utilities\PathUtilities.cs (1)
87return Path.IsPathFullyQualified(path);
Microsoft.SourceLink.GitLab (1)
src\sourcelink\src\Common\Utilities\PathUtilities.cs (1)
87return Path.IsPathFullyQualified(path);
Microsoft.SourceLink.GitWeb (1)
src\sourcelink\src\Common\Utilities\PathUtilities.cs (1)
87return Path.IsPathFullyQualified(path);
NuGet.Build.Tasks (4)
GetRestoreSettingsTask.cs (4)
141Debug.Assert(Path.IsPathFullyQualified(ProjectUniqueName)); 142Debug.Assert(Path.IsPathFullyQualified(MSBuildStartupDirectory)); 143Debug.Assert(string.IsNullOrEmpty(RestoreRootConfigDirectory) || Path.IsPathFullyQualified(RestoreRootConfigDirectory)); 144Debug.Assert(string.IsNullOrEmpty(RestoreSolutionDirectory) || Path.IsPathFullyQualified(RestoreSolutionDirectory));
NuGet.Common (1)
UriUtility.cs (1)
129return Path.IsPathFullyQualified(rootDirectory)
System.Diagnostics.FileVersionInfo (1)
System\Diagnostics\FileVersionInfo.cs (1)
301if (!Path.IsPathFullyQualified(fileName))
System.Formats.Tar (7)
System\Formats\Tar\TarEntry.cs (5)
367Debug.Assert(Path.IsPathFullyQualified(destinationDirectoryPath)); 372Path.IsPathFullyQualified(name) ? name : Path.Join(destinationDirectoryPath, name)); 387if (OperatingSystem.IsWindows() && Path.IsPathRooted(linkName) && !Path.IsPathFullyQualified(linkName)) 393Path.IsPathFullyQualified(linkName) ? linkName : Path.Join(Path.GetDirectoryName(fileDestinationPath), linkName)); 523Debug.Assert(Path.IsPathFullyQualified(qualifiedPath), $"{qualifiedPath} is not qualified");
System\Formats\Tar\TarFile.cs (2)
725Debug.Assert(Path.IsPathFullyQualified(sourceDirectoryName)); 734Debug.Assert(Path.IsPathFullyQualified(destinationDirectoryPath));
System.IO.Compression.ZipFile (1)
src\runtime\src\libraries\Common\src\System\IO\Archiving.Utils.Windows.cs (1)
20if (preserveDriveRoot && entryPath.Length >= 3 && entryPath[1] == ':' && Path.IsPathFullyQualified(entryPath))
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\Path.Unix.cs (2)
41if (!IsPathFullyQualified(basePath)) 47if (IsPathFullyQualified(path))
src\runtime\src\libraries\System.Private.CoreLib\src\System\StartupHookProvider.cs (2)
118if (Path.IsPathFullyQualified(startupHookPart)) 163Debug.Assert(Path.IsPathFullyQualified(startupHook.Path));
System\Runtime\InteropServices\NativeLibrary.NativeAot.cs (1)
78bool libNameIsRelativePath = !Path.IsPathFullyQualified(libraryName);
System.Windows.Forms.Primitives (2)
Windows\Win32\PInvoke.LoadLibrary.cs (2)
18Debug.Assert(Path.IsPathFullyQualified(customPath)); 20if (Path.IsPathFullyQualified(customPath))