13 references to StrongNameLevel
Microsoft.Build.Tasks.Core (13)
AxTlbBaseReference.cs (7)
299StrongNameLevel desiredStrongNameLevel = StrongNameLevel.None; 303desiredStrongNameLevel = DelaySign ? StrongNameLevel.DelaySigned : StrongNameLevel.FullySigned; 307StrongNameLevel currentStrongNameLevel = StrongNameUtils.GetAssemblyStrongNameLevel(wrapperInfo.path); 316if (desiredStrongNameLevel == StrongNameLevel.DelaySigned || 317desiredStrongNameLevel == StrongNameLevel.FullySigned)
StrongNameUtils.cs (6)
136internal static StrongNameLevel GetAssemblyStrongNameLevel(string assemblyPath) 140StrongNameLevel snLevel = StrongNameLevel.Unknown; 205snLevel = StrongNameLevel.None; 212snLevel = StrongNameLevel.FullySigned; 216snLevel = StrongNameLevel.DelaySigned;