Convert .net 1.1 to .net 2.0

how can we convert .net 1.1 to .net 2.0 without any code changes?

+2


a source to share


4 answers


I think there might be a scenario where code changes are needed, or maybe not. It all depends on your code base. For a starting point, you can check the following links:

.NET 1.1 for .NET 2.0 migration



Migrating from .NET 1.1 to 2.0, 3.0 and 3.5

+5


a source


Not every program can be converted from 1.1 to 2.0 without any changes to its code. You may be lucky with your project.



See breaking changes between 1.1 and 2.0 .

+1


a source


I have followed the steps below and is working for me

  • Change target framework version 2.0 (I had 10 proj. In my solution)
  • Update Nuget packages with the latest version (some of the previous packages are not compatible with .net core 2.0)
  • Build your solution, I got some error because some of the methods are deprecated. eg enter image description here
  • If you get a similar error, you need to check the suggested link and fix it.

What is it.:)

You can look into .net 2.0 - https://youtu.be/Q2mMbjw6cLA

0


a source


Just change the target framework to .NET Framework 2.0.

http://anyhub.net/file/30-04-2010-8-47-02-pm.png

You don't need to change the code, but if you do, it shouldn't be too drastic to fix

-1


a source







All Articles