2

I have an asp.net project that holds my user controls within a Web Deployment project. I use Web Deployment project to output a single dll file, so I can use controls easily in other projects. So how can I embed resourses (like js, image,... files) into this single dll?

Mahdi
  • 725
  • 2
  • 7
  • 24

1 Answers1

0

Change the build action to embedded resource for the files.

Simon Halsey
  • 5,459
  • 1
  • 21
  • 32
  • As I mentioned before this is a asp.net web project so I haven't such property for files – Mahdi Apr 13 '11 at 05:54