8 references to StrongNameSigned
Microsoft.CodeAnalysis (2)
Compilation\Compilation.cs (1)
2360result |= CorFlags.StrongNameSigned;
PEWriter\PeWriter.cs (1)
298if (privateKeyOpt != null && corFlags.HasFlag(CorFlags.StrongNameSigned))
Microsoft.DotNet.StrongName (6)
Signing.cs (3)
36writer.Write((UInt32)(peReader.PEHeaders.CorHeader.Flags & ~CorFlags.StrongNameSigned)); 251return (header.Flags & CorFlags.StrongNameSigned) == CorFlags.StrongNameSigned;
Utils.cs (1)
95var flagBytes = BitConverter.GetBytes((uint)(peHeaders.CorHeader.Flags | CorFlags.StrongNameSigned));
Verification.cs (2)
65if (CorFlags.StrongNameSigned != (flags & CorFlags.StrongNameSigned))