Skip to content

Commit 7e67a7b

Browse files
authored
[release/9.0] Do not skip initially ignored extensions (#16017)
1 parent 1a2e280 commit 7e67a7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.DotNet.SignTool/src/SignInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ internal SignInfo(string certificate, string strongName = null, string collision
6666
}
6767

6868
internal SignInfo WithCertificateName(string value, string collisionPriorityId)
69-
=> new SignInfo(value, StrongName, collisionPriorityId, ShouldIgnore, IsAlreadySigned);
69+
=> new SignInfo(value, StrongName, collisionPriorityId, false, false);
7070

7171
internal SignInfo WithCollisionPriorityId(string collisionPriorityId)
7272
=> new SignInfo(Certificate, StrongName, collisionPriorityId, ShouldIgnore, IsAlreadySigned);

0 commit comments

Comments
 (0)