Where can I find the generated dll in visual studio 2005? I didn’t find any of the generated .dll file as in visual studio 2003. Please let me know the steps to generate the project .dll
Thank
On 3/19/06 22:14, in article OEZ1QW#SGHA.4600@TK2MSFTNGP11.phx.gbl, "owais"
<sohail29@-NOSPAM-hotmail.com> wrote:
> Where can I find the generated dll in visual studio 2005? I didnБ─≧t find any
> of the generated .dll file as in visual studio 2003. Please let me know the
[quoted text clipped - 4 lines]
> ---
> Posted using Wimdows.net Newsgroups - http://www.wimdows.net/newsgroups/
VS 2005 default compilation model is different, it leverages the fact that
ASP.NET runtime does not need the dll and can compile pages on demand. Hence
compilation into a dll is not necessary. Have a look here
http://weblogs.asp.net/scottgu/archive/2005/08/21/423201.aspx
However, if you still want VS 2003 model, have a look here
http://msdn.microsoft.com/asp.net/reference/infrastructure/wap/
Thanks