Question

I mean when I publish my web application asp.net publisher generate one assembly why ? I like to have different assembly. is it possible ?

Was it helpful?

Solution

While publishing, Asp.net compiles all your code files into a single assembly and uploads it with other UI files i.e .aspx or .cshtml. It does so to make your application precomplied for faster performance. Every .net project has a single assembly. If you want to factor your assembly then make different projects according to your liking for getting different dlls.

For further information you visit this video link Deploying A Web Application Using Visual Studio 2010 Web Deployment Tool

OTHER TIPS

If it is web application project you can have multiple class libraries and those will be complied in to several assemblies.

That will require a good amount of work, so I hope that you have a good reason for it, but here is a guide to get you started:

http://support.microsoft.com/default.aspx?scid=kb;EN-US;307467

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top