1 write to Value
NuGet.Configuration (1)
Settings\Items\OwnersItem.cs (1)
74_content.Value = string.Join(OwnersListSeparator.ToString(CultureInfo.CurrentCulture), Content);
8 references to Value
NuGet.Configuration (8)
Settings\Items\OwnersItem.cs (2)
52Content = _content.Value.Split(OwnersListSeparator).Select(o => o.Trim()).ToList(); 57var newItem = new OwnersItem(_content.Value);
Settings\SettingText.cs (6)
52return string.Equals(Value, text.Value, StringComparison.Ordinal); 55public override int GetHashCode() => Value.GetHashCode(); 57public override bool IsEmpty() => string.IsNullOrEmpty(Value); 61var newSetting = new SettingText(Value); 91return new XText(Value);