0

I'm trying to merge all my aspx and ascx in a single dll with ASP_Merge.exe... it is working, and i did create the dll. My problem is, this merger creates a default namespace with the name "ASP" and inside are all the compiled ascx and aspx.

What i need is change this "ASP" namespace to "MyCustomNamespace". Is there a way to do this?

Thanks in advance.

Juanda
  • 49
  • 1
  • 9

1 Answers1

0

When you publish the web application, it compiles your code into a single DLL anyway. See How to publish a website.

Christian Phillips
  • 18,399
  • 8
  • 53
  • 82
  • Yeah, i'm using the same commands publish use to build the dll i need... i need this dll to dinamically load the controls in another project. When i publish my webapp, it creates the dll with all the controls inside, but the namespace inside this dll is "ASP", i need to change this namespace and set it myself. Is there a way of doing this? – Juanda Aug 13 '13 at 20:42