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)
138internal static StrongNameLevel GetAssemblyStrongNameLevel(string assemblyPath) 142StrongNameLevel snLevel = StrongNameLevel.Unknown; 207snLevel = StrongNameLevel.None; 214snLevel = StrongNameLevel.FullySigned; 218snLevel = StrongNameLevel.DelaySigned;