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.
what does the PublicKeyToken value get changed to if Version gets changed to 3.5.0.0?
Any help is much appreciated.
Thanks
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" />
Any help is much appreciated.
Thanks
Comment