Porting ASP.NET app from version 2.5 to 3.x

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • developing
    New Member
    • Mar 2007
    • 110

    Porting ASP.NET app from version 2.5 to 3.x

    Hi,

    I have a sample ASP.NET app that I run successfully with .NET 2.0. Now this app needs to run on .NET 3.5 or 3.0

    What are some changes that I should look out for?

    The most obvious one is assembly references in web.config, except I am not really sure what to change these to.

    Code:
        <add assembly="System.Design, Version=2.00.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
    what does the PublicKeyToken value get changed to if Version gets changed to 3.5.0.0?


    Any help is much appreciated.

    Thanks
  • balabaster
    Recognized Expert Contributor
    • Mar 2007
    • 798

    #2
    First up - have you tried opening the app in Visual Studio 2008? If you attempt to open it, then the first time you do this, VS 2008 will ask you if you wish to upgrade. It should take care of most of this automatically. Be sure to choose the backup option though in case you need to bail...

    Comment

    Working...