Leonardo
Leonardo

Reputation: 11391

Force Azure Worker Role Project Carry extra dll

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

Answers (2)

freakyroach
freakyroach

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

David Makogon
David Makogon

Reputation: 71030

After adding them to whatever project folder you have, just set "copy local" to true.

Upvotes: 0

Related Questions