Convert .net 1.1 to .net 2.0
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
+5
a source to share
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

- 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 to share
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 to share
