Strong Signed Assemblies

前端 未结 10 1195
青春惊慌失措
青春惊慌失措 2020-12-05 13:42

I have a project I made in Visual Basic 2008 Express. I converted it from someone else\'s C# project, but it works. It has several DLL dependencies. I went to publish my pro

10条回答
  •  [愿得一人]
    2020-12-05 14:03

    Strongly named assemblies are mainly assemblies which have are signed by a cryptographic key. This is fairly easy to do with Visual Studio and does not require re-ordering of your dependencies.

    I'm using non-express Visual Studio so the steps may be slightly different for you.

    • Right click on the project and select properties
    • Click on the Signing tab
    • Check "Sign the assembly"
    • In the combo box select ""
    • Complete the wizard
    • Rebuild

提交回复
热议问题