21 references to FilePath
dotnet (20)
BuildServer\BuildServerProvider.cs (1)
59var file = ReadRazorPidFile(new FilePath(path));
BuildServer\RazorPidFile.cs (1)
58return new RazorPidFile(path, processId, new FilePath(serverPath), pipeName);
Commands\Tool\Common\ToolManifestFinderExtensions.cs (1)
22return (new FilePath(explicitManifestFile), null);
Commands\Tool\Execute\ToolExecuteCommand.cs (3)
83var restoreResult = toolPackageRestorer.InstallPackage(toolManifestPackage, _configFile == null ? null : new FilePath(_configFile)); 108nugetConfig: _configFile != null ? new(_configFile) : null, 125nugetConfig: _configFile != null ? new(_configFile) : null,
Commands\Tool\Install\ToolInstallGlobalOrToolPathCommand.cs (2)
100var packageSourceLocation = new PackageSourceLocation(string.IsNullOrEmpty(configOption) ? null : new FilePath(configOption), sourceFeedOverrides: _source, additionalSourceFeeds: _addSource, basePath: _currentWorkingDirectory); 361configFile = new FilePath(_configFilePath);
Commands\Tool\Install\ToolInstallLocalCommand.cs (1)
213: new FilePath(_explicitManifestFile);
Commands\Tool\Install\ToolInstallLocalInstaller.cs (1)
39configFile = new FilePath(configFilePath);
Commands\Tool\Restore\ToolRestoreCommand.cs (2)
83configFile = new FilePath(_configFilePath); 186customManifestFileLocation = new FilePath(customFile);
Commands\Workload\InstallingWorkloadCommand.cs (1)
105new PackageSourceLocation(string.IsNullOrEmpty(configOption) ? null : new FilePath(configOption), sourceFeedOverrides: sourceOption);
Commands\Workload\Repair\WorkloadRepairCommand.cs (1)
38new PackageSourceLocation(string.IsNullOrEmpty(configOption) ? null : new FilePath(configOption), sourceFeedOverrides: sourceOption);
NugetPackageDownloader\NuGetPackageDownloader.cs (3)
283if ((!_shouldUsePackageSourceMapping && !_firstPartyNuGetPackageSigningVerifier.Verify(new FilePath(nupkgPath), out commandOutput)) || 284(_shouldUsePackageSourceMapping && !FirstPartyNuGetPackageSigningVerifier.NuGetVerify(new FilePath(nupkgPath), out commandOutput, _currentWorkingDirectory))) 422.Select(f => new FilePath(f));
Program.cs (1)
200IFileSentinel toolPathSentinel = new FileSentinel(new FilePath(toolPath));
ToolManifest\ToolManifestFinder.cs (1)
207return new FilePath(WriteManifestFile(manifestInsertFolder));
ToolPackage\LocalToolsResolverCache.cs (1)
152new FilePath(cacheRow.PathToExecutable));
Microsoft.DotNet.InternalAbstractions (1)
DirectoryPath.cs (1)
35return new FilePath(Path.Combine(Value, fileName));