Thank you Mark... so, to cut to the chase on my scenario, is it true (given
what you wrote) that I will need to do the following to get my 1.1 app into
2.0 and get the single-dll-when-compiling experience I had in 1.1?
Step 1 - install SP1 for VS 2005 (I have not already done this)
Step 2 - open my 1.1 project in VS 2005 and let the conversion wizard take
over; converting everything to 2.0.
Step 3 - go on with life in the 2.0 world just like I would have in the 1.1
world (i.e, I can keep my carefully planned folder structure without having
to migrate it all to App_Code"; compile and get a single dll, etc).
Would you expect the above steps to get me where I want to go?
Separately, I do understand the option that Mr. Nemtsev presented - but I'd
prefer to avoid having to create a deployment project if I can get what I
want without creating the deployment project.
Thanks
-Bob
[quoted text, click to view] "Mark Fitzpatrick" <markfitz@fitzme.com> wrote in message
news:eR%23Td78vHHA.4800@TK2MSFTNGP05.phx.gbl...
> I'm assuming you're using VS to generate the project. VS 2005 SP 1
> introduced the Web Application Project that works very similar to the VS
> 2002/3 web project and compiles everything into a single dll. The original
> web project, called Web Site Project, that shipped with VS 2005 does have
> this behavior. Mainly it uses a different directive to identify the code
> seperated from the web page. It uses the CodeFile directive instead of the
> CodeBehind. Unfortunatley, this can lead to some problems sharing code
> amongst pages if they're in different directories since they don't
> necessarily know about eachother. The way around this was the App_Code
> directory, which gets compiled first and is available to all pages. The
> Web Site Project was a nice idea, but so many people cried foul on it that
> MS hurried and created the Web Application Project to give us the same
> experience we were used to for 1.x development.
>
>
> --
> Hope this helps,
> Mark Fitzpatrick
> Microsoft FrontPage MVP 199?-2006. 2007 and beyond
>
>
> "Bob Johnson" <A@B.COM> wrote in message
> news:uGyeSh4vHHA.2004@TK2MSFTNGP06.phx.gbl...
>> I'm finally getting around to migrating a "big" ASP.NET 1.1 app to 2.0.
>> I've been reading up on the differences and I'm NOT finding something I
>> was lead to believe was the case [about 2.0] a long time ago. I somehow
>> was under the impression that, when compiling an ASP.NET 2.0 app, that
>> multiple dll files were output for the project: one .dll per ASPX
>> page/file. Gone was the day when we could simply compile the project and
>> get a single .dll that we could then move to the production bin folder.
>>
>> But in doing my current round of research to get up to speed on 2.0, I'm
>> not finding anything that supports that erstwhile understanding.
>>
>> So - do we still get one big happy .dll in the bin folder for our ASP.NET
>> 2.0 Web applications when we compile? Or do we really get multiple output
>> dlls (one per ASPX page/file).???
>>
>> Thanks!
>>
>
>