12 references to Value
Microsoft.DotNet.Build.Tasks.Installers (12)
src\RpmHeader.cs (11)
50if (entry.Value is string str) 56builder.AppendLine($"\t\t{((ArraySegment<byte>)entry.Value).Count} bytes"); 57builder.AppendLine($"\t\t{BitConverter.ToString(((ArraySegment<byte>)entry.Value).Array!, ((ArraySegment<byte>)entry.Value).Offset, ((ArraySegment<byte>)entry.Value).Count)}"); 59else if (entry.Value is IEnumerable collection) 68builder.AppendLine($"\t\t{entry.Value}"); 257ArraySegment<byte> binary = (ArraySegment<byte>)entry.Value; 271byte[] bytes = Encoding.UTF8.GetBytes((string)entry.Value); 280string[] strings = (string[])entry.Value; 306Array contents = (Array)entry.Value;
src\RpmPackage.cs (1)
30if (header.Entries.First(e => e.Tag == RpmHeaderTag.PayloadCompressor).Value is not "gzip")