Reputation: 11391
I'm doing some reflection based work on azure and I would like to know if its possible to "force" the deploy project to carry the "extras" (not directally referenced, but necessary) dlls along with my default dlls.
Upvotes: 0
Views: 101
Reputation: 460
upload the dlls to a blob storage. Then in your on start of role, download the files into the required folder. You may also make use of startup tasks running with elevated privileges.
Upvotes: 1
Reputation: 71030
After adding them to whatever project folder you have, just set "copy local" to true.
Upvotes: 0