Marnana. John
Marnana. John

Reputation: 33

specify the same key file in visual studio

i faced problem while obfuscation process. i am still beginner don't know how to fix that.

i search on metroframwork ui .dll key file, but not much positive result.`

otherwise i didn't find anything in project file. will grateful for your help as well.

required key file, i don't have it.

error image

even if i disable Tamper Detection settings, it have same error.

source code, very simple :

Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    MsgBox("Welcome")
End Sub
End Class

Upvotes: 0

Views: 105

Answers (1)

Artem Razin
Artem Razin

Reputation: 1286

I beleive you has to skip obfuscation of any assembly whose key is unavailable because you need to resign obfuscated dll using that key.

In general it's uncommon to obfuscate 3rd party dlls.

But in this case the dll is open sourced and its key is available on github.

Upvotes: 0

Related Questions