1 write to _nuspec
NuGet.Protocol (1)
Model\LocalPackageSearchMetadata.cs (1)
25_nuspec = package.Nuspec;
18 references to _nuspec
NuGet.Protocol (18)
Model\LocalPackageSearchMetadata.cs (18)
28public string? Authors => _nuspec.GetAuthors(); 30public IEnumerable<PackageDependencyGroup> DependencySets => _nuspec.GetDependencyGroups().ToArray(); 32public string? Description => _nuspec.GetDescription(); 43public PackageIdentity Identity => _nuspec.GetIdentity(); 45public Uri? LicenseUrl => Convert(_nuspec.GetLicenseUrl()); 62public string? Owners => _nuspec.GetOwners(); 64public Uri? ProjectUrl => Convert(_nuspec.GetProjectUrl()); 80public bool RequireLicenseAcceptance => _nuspec.GetRequireLicenseAcceptance(); 82public string? Summary => !string.IsNullOrEmpty(_nuspec.GetSummary()) ? _nuspec.GetSummary() : Description; 88var tags = _nuspec.GetTags()?.Split(new[] { ' ' }, StringSplitOptions.RemoveEmptyEntries) ?? Array.Empty<string>(); 93public string Title => !string.IsNullOrEmpty(_nuspec.GetTitle()) ? _nuspec.GetTitle()! : _nuspec.GetId(); 134public LicenseMetadata? LicenseMetadata => _nuspec.GetLicenseMetadata(); 194string? embeddedIcon = _nuspec.GetIcon(); 198return Convert(_nuspec.GetIconUrl()); 214string? embeddedReadme = _nuspec.GetReadme();