Genato
Genato

Reputation: 606

Confused when creating new ASP.NET application template?

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.

Selecting template

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

Answers (2)

Bhawna Jain
Bhawna Jain

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.

enter image description here

Target framework can be changed from solution properties window-->application(refer screen shot below).You can also take reference from here

enter image description here

Upvotes: 2

sagar
sagar

Reputation: 11

4 stands for target framework, not for version.

there is difference between target framework and version.

Upvotes: 1

Related Questions