supremo
supremo

Reputation: 151

Running ASP.NET vNExt on .net 4.0

If I have a server running on .NET Framework 4.0. Will it be possible to run ASP.NET vNext on top of that? Or will a higher framework version be required?

Upvotes: 1

Views: 333

Answers (1)

alekseevi15
alekseevi15

Reputation: 1782

As stated on Asp.NET vNext's page on GitHub the minimum requirements for Windows as follows:

  • Windows 7 or Windows Server 2008 R2.
  • .NET 4.5.1 for hosting in IIS

However, ASP.NET vNext will let you deploy different versions of the .NET Framework via NuGet packages for different apps on server as stated here. But it's not .NET Framework 4.0 anyway. So, you need the higher version.

Upvotes: 5

Related Questions