3 instantiations of Result
NuGet.PackageManagement (3)
Utility\PackagesConfigContentHashProvider.cs (3)
31result = new Result(found: true, contentHash: contentHash); 53return new Result(found: true, contentHash: metadata.ContentHash); 87public static readonly Result NotFound = new Result(found: false, contentHash: null);
4 references to Result
NuGet.PackageManagement (4)
Utility\PackagesConfigContentHashProvider.cs (4)
26var result = TryGetNupkgMetadata(nupkgPath); 47private Result TryGetNupkgMetadata(string nupkgPath) 56return Result.NotFound; 87public static readonly Result NotFound = new Result(found: false, contentHash: null);