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