ProfK
ProfK

Reputation: 51064

Update to Precompiled Site

I have a .NET 2.0, precompiled and deployed web site. I have decompiled the site and added new functionality to a 'dev branch' of the site. I now need to upgrade the site to .NET 3.5, so that the new features can function, and add the new features to the 'production' site.

How can I go about this merge of features into the 'production' site? I have several C# classes, new pages, and uncompiled source code for existing pages.

Upvotes: 3

Views: 593

Answers (3)

ProfK
ProfK

Reputation: 51064

It is best to deploy the decompiled site under 3.5, but keep most 2.0 decompiled pages, and above all, replace web.config with the 3.5 version. web.config seldom affects serving of regular (aspx) pages, so replacing it to get 3.5 has very little impact.

Upvotes: 0

Dan Fuller
Dan Fuller

Reputation: 1161

Why not just recompile the entire site in .NET 3.5, install the 3.5 runtimes onto your target site and just reinstall the newly complied 3.5 version of your website?

Upvotes: 0

Dave Anderson
Dave Anderson

Reputation: 12294

If you recompile the new features and thus have a new precompiled site running a new version of .Net there won't be anything to merge unless you don't do a full deployment but if you don't do a full deployment how can you have upgraded to a new version of .Net?

Upvotes: 1

Related Questions