-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Update HealthChecks and HealthChecks.SqlServer to .NET Standard 2.0 #369
Conversation
Not sure we want to upgrade this class library (Health Checks) to .NET Standard 2.0, since this is a copy of the original ALPHA code here: https://github.com/dotnet-architecture/HealthChecks The benefit of moving to .NET Standard 2.0 is when you need APIs in newer versions while having compatibility with the rest of the frameworks. I.e. if I want to use something specific implemented in .NET Core 2.0 or UWP while .NET Standard 2.0 increased a lot the % of APIs from the multiple frameworks. As described in the mentioned URL/page, when choosing a .NET Standard version, you should consider these trade-off:
So generally speaking, you should target the lowest version you get away with. Finally, I wouldn't bother much about this Health Checks lib because we'll be moving to the officially supported library in ASP.NET 2.x, in a Nuget package, soon.. :) |
No description provided.