12 references to IsSigned
Microsoft.DotNet.SignTool (2)
src\Configuration.cs (1)
565bool isAlreadyStrongNamed = StrongName.IsSigned(file.FullPath, snPath: _snPath, log: _log);
src\RealSignTool.cs (1)
94return StrongName.IsSigned(fileFullPath, snPath:_snPath, log: _log) ? SigningStatus.Signed : SigningStatus.NotSigned;
Microsoft.DotNet.SignTool.Tests (10)
SignToolTests.cs (10)
3031StrongName.IsSigned(GetResourcePath("AspNetCoreCrossLib.dll")).Should().BeFalse(); 3032StrongName.IsSigned(GetResourcePath("CoreLibCrossARM.dll")).Should().BeFalse(); 3033StrongName.IsSigned(GetResourcePath("EmptyPKT.dll")).Should().BeFalse(); 3034StrongName.IsSigned(GetResourcePath("DelaySigned.dll")).Should().BeFalse(); 3035StrongName.IsSigned(GetResourcePath("ProjectOne.dll")).Should().BeFalse(); 3142StrongName.IsSigned(GetResourcePath("SignedLibrary.dll")).Should().BeTrue(); 3143StrongName.IsSigned(GetResourcePath("StrongNamedWithEcmaKey.dll")).Should().BeTrue(); 3160StrongName.IsSigned(resourcePath).Should().Be(initiallySigned); 3162StrongName.IsSigned(resourcePath).Should().BeTrue(); 3181StrongName.IsSigned(resourcePath).Should().BeTrue();