What frameworks are available in ASP.NET Core (ASP.NET 5) applications? -
i have seen various frameworks targeted in project.json files, using names such netcore50
, dotnet
, dnx451
, net45
, , others. documentation "framework" section project.json not (yet) specify how use section different frameworks.
what frameworks available , name should used in project.json target each?
update 3
full list see target frameworks.
the common tfms asp.net app developers need know are:
netcoreappx.y
= application targets .net core x.y (e.g.netcoreapp1.0
= .net core 1.0)netstandardx.y
= library targets .net standard x.y. (e.g.netstandard2.0
= .net standard 2.0). .net standard libraries can work on desktop .net, windows phone, mono, , others.net4xy
= library or console app targets desktop .net framework 4.x.y (e.g.net452
ornet46
)
update 2 (dec 9, 2015)
somewhat official docs available dotnet. see .net platform standard → nuget
for libraries targeting multiple platforms adhere .net standard, these tfms (target framework monikers) available.~
update (aug 12, 2015)
this nuget blog post shows additional tfms available nuget. explains dotnet
tfm.
original response
although not official documentation, this blog post oren novotny has excellent table showing different target framework monikers.
Comments
Post a Comment