/// <summary>
        ///     Generate evidence if the assembly is installed in the GAC
        /// </summary>
        private GacInstalled GenerateGacEvidence()
        {
            if (!m_targetAssembly.GlobalAssemblyCache)
            {
                return(null);
            }

            m_peFileFactory.FireEvidenceGeneratedEvent(EvidenceTypeGenerated.Gac);
            return(new GacInstalled());
        }
 internal void FireEvidenceGeneratedEvent(EvidenceTypeGenerated type)
 {
     PEFileEvidenceFactory.FireEvidenceGeneratedEvent(this.m_peFile, type);
 }