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