What I want the steps for converting the application from c#.NET 1.1 to c#.NET 2.0 first.
Next make sure that all functionality works as was working in 1.1, please give me the factors for convertion
Converting the application from c#.NET 1.1 to c#.NET 2.0?
All we had to do was load the old project in the new version of Visual Studio. It warned us that it was going to convert it and that you couldn't go back, but that was fine and it converted quickly and easily. It ran just fine.
Now you should realize that it was still calling version 1.1 of the framework. All of the framework versions can co-exist, and unless you want to use something that only exists in 2.0, you can keep calling 1.1. You can force VS to target a different version of the framework if you want to start using the new controls, etc. but that is when you might have compatibility problems. Some interfaces did change. You will receive errors when you try to build and can correct as you go.
Sadly, you cannot get around full regression testing.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment