Can I safely remove ASP.NET MVC 2 from Visual Studio if I use ASP.NET MVC 3?

I am trying to speed up the work of my computer a little, and besides these useful tips I am trying to remove all extensions and add-ons in Visual Studio that I no longer use.

I noticed that I have both ASP.NET MVC 2 and 3 installed side by side and I am not using version 2 at all.

ASP .NET MVC 2 and 3 side-by-side install

Is it possible to safely remove the old version or is MVC 3 dependent on MVC 2?
I do not want to ruin my work environment.

+6
source share
2 answers

Yes.
MVC 2 and MVC 3 are completely independent.

+10
source

Yes, I did it myself. In fact, when I first installed MVC3, there was a known conflict in which MVC3 would not work properly if MVC1 was not removed first. It is not possible to remember the details, but yes, you can remove MVC1 and MVC2, leaving MVC3 in excellent condition.

+2
source

Source: https://habr.com/ru/post/894105/


All Articles