3 writes to Type
NuGet.Packaging (3)
Core\RepositoryMetadata.cs (1)
17Type = type;
NuspecReader.cs (1)
418repository.Type = GetAttributeValue(node, "type") ?? string.Empty;
PackageCreation\Authoring\ManifestReader.cs (1)
442repository.Type = repositoryType!.Value;
6 references to Type
NuGet.Packaging (6)
Core\RepositoryMetadata.cs (3)
69string.Equals(Type, other.Type, StringComparison.OrdinalIgnoreCase) && 79combiner.AddObject(Type, StringComparer.OrdinalIgnoreCase);
PackageCreation\Authoring\ManifestReader.cs (1)
452if (!string.IsNullOrEmpty(repository.Type) && !string.IsNullOrEmpty(repository.Url))
PackageCreation\Xml\PackageMetadataXmlExtensions.cs (2)
292if (repository != null && !string.IsNullOrEmpty(repository.Type)) 294attributeList.Add(new XAttribute(NuspecUtility.Type, repository.Type));