Reputation: 606
Am sorry about odd title but i coludn't explain well what am i confused about in a few words.
When creating new ASP.NET application (Visual Studio 2015, framework), on the window where you get to choose which template you want.
I got confued about that number 4, what does it stands for?
MVC version -> In packages.config it says version is 5.2.3 ??
Upvotes: 0
Views: 85
Reputation: 759
4 as a superscript indicates the target framework of template(i.e. 4.5.2 in attached image for MVC) and by default it selects the latest version of target framework.
Target framework can be changed from solution properties window-->application(refer screen shot below).You can also take reference from here
Upvotes: 2
Reputation: 11
4 stands for target framework, not for version.
there is difference between target framework and version.
Upvotes: 1