6 references to ResourceName
Microsoft.NET.Build.Extensions.Tasks (6)
MessageBase.cs (6)
37if (string.IsNullOrEmpty(FormattedText) && string.IsNullOrEmpty(ResourceName)) 39throw new ArgumentException($"Either {nameof(FormattedText)} or {nameof(ResourceName)} must be specified."); 41else if (!string.IsNullOrEmpty(FormattedText) && !string.IsNullOrEmpty(ResourceName)) 43throw new ArgumentException($"Only one of {nameof(FormattedText)} and {nameof(ResourceName)} can be specified."); 45else if (!string.IsNullOrEmpty(ResourceName)) 56string? format = Strings.ResourceManager.GetString(ResourceName, Strings.Culture);