3 writes to Url
NuGet.Packaging (3)
Core\RepositoryMetadata.cs (1)
18
Url
= url;
NuspecReader.cs (1)
419
repository.
Url
= GetAttributeValue(node, "url") ?? string.Empty;
PackageCreation\Authoring\ManifestReader.cs (1)
446
repository.
Url
= repositoryUrl!.Value;
6 references to Url
NuGet.Packaging (6)
Core\RepositoryMetadata.cs (3)
70
Url
== other.
Url
&&
80
combiner.AddObject(
Url
);
PackageCreation\Authoring\ManifestReader.cs (1)
452
if (!string.IsNullOrEmpty(repository.Type) && !string.IsNullOrEmpty(repository.
Url
))
PackageCreation\Xml\PackageMetadataXmlExtensions.cs (2)
297
if (repository != null && !string.IsNullOrEmpty(repository.
Url
))
299
attributeList.Add(new XAttribute(NuspecUtility.RepositoryUrl, repository.
Url
));