1 write to Path
NuGet.Protocol (1)
LocalRepositories\LocalPackageInfo.cs (1)
48
Path
= path;
14 references to Path
NuGet.PackageManagement (1)
Projects\FolderNuGetProject.cs (1)
463
return package.
Path
;
NuGet.Protocol (13)
LocalRepositories\FindLocalPackagesResourceUnzipped.cs (1)
91
var path = UriUtility.CreateSourceUri(package.
Path
, UriKind.Absolute);
LocalRepositories\LocalDependencyInfoResource.cs (1)
155
downloadUri: UriUtility.CreateSourceUri(package.
Path
, UriKind.Absolute),
LocalRepositories\LocalDownloadResource.cs (2)
72
var stream = File.OpenRead(packageInfo.
Path
);
75
HttpStreamValidation.ValidatePackageIdentity(packageInfo.
Path
, stream, identity);
LocalRepositories\LocalPackageInfo.cs (4)
55
var directoryName = System.IO.Path.Combine(System.IO.Path.GetDirectoryName(
Path
), System.IO.Path.GetFileNameWithoutExtension(
Path
));
60
return new PackageArchiveReader(
Path
);
109
return
Path
.EndsWith(PackagingCoreConstants.NupkgExtension, StringComparison.OrdinalIgnoreCase);
LocalRepositories\LocalV2FindPackageByIdResource.cs (2)
176
using (var fileStream = File.OpenRead(info.
Path
))
323
packageDownloader = new LocalPackageArchiveDownloader(_source, packageInfo.
Path
, packageInfo.Identity, logger);
Model\LocalPackageSearchMetadata.cs (3)
144
public string PackagePath => _package.
Path
;
203
var baseUri = Convert(_package.
Path
);
222
var baseUri = Convert(_package.
Path
);