Avoiding Bin directory with precompiled sites

B

bosa

Hi,

I am looking for a way to deploy a precompiled ASP.NET site that does
not involve the bin directory.

My problem is that deploying binary files to the bin directory remains
a no-no on several security check-lists and is unacceptable to my
customers.

I tried using the aspnet_merge, signing the assembly with a strong
name. However I could not get the site to work when I moved the
assembly to the GAC.

Does anyone know of a way to make this work?

Regards,

Bo
 
G

George Ter-Saakov

Not sure i understood you correctly.
"looking for a way to deploy a precompiled ASP.NET site that does not
involve the bin directory."

But it though that is what "precompiled" means...
Your aspx pages were compiled into DLLs and you move them to server.

If you do not want to move DLLs then you will have to distribute source
files (.cs and aspx) and let ASP.NET to compile them on a fly.

George
 
B

Bo Salomon

Not sure i understood you correctly.
"looking for a way to deploy a precompiled ASP.NET site that does not
involve the bin directory."

But it though that is what "precompiled" means...
Your aspx pages were compiled into DLLs and you move them to server.

If you do not want to move DLLs then you will have to distribute source
files (.cs and aspx) and let ASP.NET to compile them on a fly.

George










- Show quoted text -

Since the aspnet_merge utility allows strong-naming the assembly, I am
looking for a way to install it in the GAC instead of in the bin
directory

/bo
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top