markmnl
markmnl

Reputation: 11426

If ASP.NET 5 is being renamed ASP.NET Core 1.0, what is a new ASP.NET project targeting full .NET framework?

The offical docs say:

ASP.NET 5 is being renamed to ASP.NET Core 1.0

But what if I create a new ASP .NET 5 project in VS2015 today in the the project.json only target the dnx451:

  "frameworks": {
    "dnx451": { },
  },

Surely this is not considered a "ASP .NET Core 1.0 project"! It is still possible to create ASP .NET 5 projects that do not use .NET Core and surely that won't be removed!?!?!

Upvotes: 2

Views: 146

Answers (1)

Muhammad Rehan Saeed
Muhammad Rehan Saeed

Reputation: 38407

The project templates have been split into full .NET (using the net461 target framework) and .NET Core (using the netcoreapp1.0 target framework).

You can look at this question to see if both can be targeted at the same time.

enter image description here

Upvotes: 1

Related Questions