Implemented interface member:
method
GetId
NuGet.Packaging.Core.INuspecCoreReader.GetId()
9 references to GetId
Microsoft.DotNet.PackageTesting (1)
NupkgParser.cs (1)
18string packageId = nuspecReader.GetId();
Microsoft.DotNet.PackageValidation (1)
Package.cs (1)
137string packageId = nuspecReader.GetId();
Microsoft.TemplateEngine.Cli (1)
NuGetUtils.cs (1)
32return new(nuspec.GetId(), nuspec.GetVersion().ToNormalizedString());
Microsoft.TemplateEngine.Edge (1)
Installers\NuGet\NuGetInstaller.cs (1)
444nuspec.GetId(),
NuGet.CommandLine.XPlat (1)
Commands\PackageReferenceCommands\AddPackageReferenceCommandRunner.cs (1)
356string packageId = nuspecReader.GetId();
NuGet.Packaging (3)
Core\NuspecCoreReaderBase.cs (1)
213return new PackageIdentity(GetId(), GetVersion());
PackageExtraction\PackageHelper.cs (1)
99var packageId = nuspecReader.GetId();
Rules\UpholdBuildConventionRule.cs (1)
32var packageId = builder.NuspecReader.GetId();
NuGet.Protocol (1)
Model\LocalPackageSearchMetadata.cs (1)
95public string Title => !string.IsNullOrEmpty(_nuspec.GetTitle()) ? _nuspec.GetTitle() : _nuspec.GetId();