how to move the code-behind Assemblies/DLLs to a different folder than /BIN with ASP.NET
How can I move the code-behind Assemblies/DLLs to a different folder than /BIN with ASP.NET or group/merge those DLLs in /Bin to one DLLs开发者_开发百科 file? I want to separate DLLs files as its purpose.
You can use ILMerge
to merge all your DLL files into one. http://research.microsoft.com/en-us/people/mbarnett/ilmerge.aspx
Take a look at this question inre to storing the DLL outside of the BIN folder:
Reference DLLs in ASP.NET without \Bin or GAC
精彩评论