1 write to _nuspec
NuGet.Protocol (1)
Model\LocalPackageSearchMetadata.cs (1)
27
_nuspec
= package.Nuspec;
18 references to _nuspec
NuGet.Protocol (18)
Model\LocalPackageSearchMetadata.cs (18)
30
public string Authors =>
_nuspec
.GetAuthors();
32
public IEnumerable<PackageDependencyGroup> DependencySets =>
_nuspec
.GetDependencyGroups().ToArray();
34
public string Description =>
_nuspec
.GetDescription();
45
public PackageIdentity Identity =>
_nuspec
.GetIdentity();
47
public Uri LicenseUrl => Convert(
_nuspec
.GetLicenseUrl());
64
public string Owners =>
_nuspec
.GetOwners();
66
public Uri ProjectUrl => Convert(
_nuspec
.GetProjectUrl());
82
public bool RequireLicenseAcceptance =>
_nuspec
.GetRequireLicenseAcceptance();
84
public string Summary => !string.IsNullOrEmpty(
_nuspec
.GetSummary()) ?
_nuspec
.GetSummary() : Description;
90
var tags =
_nuspec
.GetTags()?.Split(new[] { ' ' }, StringSplitOptions.RemoveEmptyEntries) ?? Array.Empty<string>();
95
public string Title => !string.IsNullOrEmpty(
_nuspec
.GetTitle()) ?
_nuspec
.GetTitle() :
_nuspec
.GetId();
136
public LicenseMetadata LicenseMetadata =>
_nuspec
.GetLicenseMetadata();
196
string embeddedIcon =
_nuspec
.GetIcon();
200
return Convert(
_nuspec
.GetIconUrl());
216
string embeddedReadme =
_nuspec
.GetReadme();