daveh551
Sat Jul 12 10:12:14 CDT 2008
On Jul 11, 11:27 pm, "Jeff Winn" <jw...@nospam.com> wrote:
> Hello Nathan,
>
> Web site projects don't work like the old web application projects did. When
> compiled each page generates their own assembly (this is the most common
> setting). That being said, they usually use a random generated name for each
> of the assemblies needed. Currently the assemblies that are generated for
> the web site projects i work with are located in the Temporary ASP.NET Files
> folder under my user profile. If you do need to generate a single dll for
> the site, I believe web deployment projects are capable of producing a
> single output assembly for the site.
>
> Not really sure why you'd need the site to generate a single assembly, just
> create a seperate class library project for anything you want to share
> between other applications and your site.
>
> If you need any further clarification, don't hesitate to ask.
>
> - Jeff
>
> "Nathan Sokalski" <njsokal...@hotmail.com> wrote in message
>
> news:%23FB2wD84IHA.1952@TK2MSFTNGP02.phx.gbl...
>
> >I have a WebSite created by clicking Create Web Site. but when I click
> >Build Web Site I cannot find a dll anywhere. I even did a search of my
> >entire hard drive, and did not find it. What's going on here?
> > --
> > Nathan Sokalski
> > njsokal...@hotmail.com
> >
http://www.nathansokalski.com/
If you do a "Publish Website", it will also generate a single DLL for
the entire site. It will usually be located in a "Precompiled Web"
folder under your project folder, and the DLL will be in the bin
directory of that folder, probably called "App_Code.dll" The
PrecompiledWeb folder is basically an image that you can FTP to your
hosting server.