0

I have been using Chris Hammond's template to create my dnn modules.

Recently I add a Class library project and was able to create an installer that looks like:

enter image description here

..still, the installer doesn't copy (or update) the reference to the bin folder in the server when we use it. Could you please tell me what I'm missing? Thanks in advance.

Erick Lanford Xenes
  • 1,467
  • 2
  • 20
  • 34

1 Answers1

1

See this answer where I explain how to add dependent dlls to your build script such that they are included and deployed with your extension package.

How to Properly Reference Assemblies in DNN Manifest?

Fix It Scotty
  • 2,852
  • 11
  • 12
  • I use your answer before and that's the way I'm having the extra dll in the install zip. Still, it doesn't install(copy) it (the extra dll) on the server. – Erick Lanford Xenes Dec 21 '21 at 16:12
  • If you look at the linked question, the user included his entire .DNN manifest file with the section. Notice he includes an entry for each dependent .dll as well as the module assembly .dll in that section. That may be what you are missing to install the assemblies from the zip package. – Fix It Scotty Dec 21 '21 at 20:29