I have a C# exe which is referring to some other dlls and the dlls are signed using a strong name key. It works fine when I execute this in my local system. But when I call the same exe from Azure release pipeline, it is giving me the below error.
System.Security.SecurityException: Strong name validation failed. (Exception from HRESULT: 0x8013141A)
I tried sn.exe -Vr "dll path" for all the referred dlls. And also tried the command bypassTrustedAppStrongNames enabled="false" & "true" within the exe's app.config. But both didn't help.
Can anyone please suggest a solution for this. Thanks in advance.