wapraph
wapraph

Reputation: 1

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.

Upvotes: 0

Views: 376

Answers (2)

James Johnson
James Johnson

Reputation: 46067

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

Upvotes: 1

Jan Jongboom
Jan Jongboom

Reputation: 27342

You can use ILMerge to merge all your DLL files into one. http://research.microsoft.com/en-us/people/mbarnett/ilmerge.aspx

Upvotes: 1

Related Questions