4 instantiations of OwnersItem
NuGet.Configuration (4)
Settings\Items\OwnersItem.cs (1)
57var newItem = new OwnersItem(_content.Value);
Settings\Items\RepositoryItem.cs (2)
49_owners = new OwnersItem(owners!); 180_owners = new OwnersItem(string.Join(OwnersItem.OwnersListSeparator.ToString(CultureInfo.CurrentCulture), other.Owners));
Settings\SettingFactory.cs (1)
83return new OwnersItem(element, origin);
9 references to OwnersItem
NuGet.Commands (1)
TrustedSignersCommand\TrustedSignerActionsProvider.cs (1)
313return string.Join(OwnersItem.OwnersListSeparator.ToString(CultureInfo.CurrentCulture), owners);
NuGet.Configuration (8)
Settings\Items\OwnersItem.cs (4)
57var newItem = new OwnersItem(_content.Value); 88if (other is OwnersItem owners) 105var owners = (OwnersItem)other;
Settings\Items\RepositoryItem.cs (4)
25private OwnersItem? _owners; 67var parsedOwners = parsedDescendants.OfType<OwnersItem>(); 93string.Join(OwnersItem.OwnersListSeparator.ToString(CultureInfo.CurrentCulture), Owners), 180_owners = new OwnersItem(string.Join(OwnersItem.OwnersListSeparator.ToString(CultureInfo.CurrentCulture), other.Owners));