user1911091
user1911091

Reputation: 1373

What is the minimum Version of the .NET Framework for an ASP.NET CORE 2.0 on Windows?

we are currently developing an microservice application with ASP.NET CORE 2.0 and i wannt to know if this application will be running on Windows 7 or even on Windows Vista or XP.

Based on this picture :

enter image description here

i assumed that our ASP.NET CORE application will use the .NET Framework if running on windows.

So my question is : How to find the minimum needed Version of the .NET Framework for an ASP.NET CORE application on Windows? If this is a valid question to ask?

Upvotes: 1

Views: 1112

Answers (1)

Shaun Luttin
Shaun Luttin

Reputation: 141462

4.6.1 is the minimum Version of the .NET Framework for an ASP.NET CORE 2.0 app.

https://learn.microsoft.com/en-us/dotnet/standard/net-standard

  • The columns represent .NET Standard versions.
  • The rows represent the different .NET implementations.
  • The version number in each cell indicates the minimum version of the implementation you'll need in order to target that .NET Standard version.

enter image description here

Upvotes: 1

Related Questions