0

I am in the process of upgrading a business layer project(netfx472) and due to some constraints I have to make it multi-target .NET Standard 2.1 and .NET FX 4.7.2 after the upgrade.

It's currently using AWSSDK.Core and I don't see a version of that package supporting .NET Standard 2.1. What are my options in moving ahead with this upgrade. Thank you for all your help!

renegadeMind
  • 4,073
  • 5
  • 29
  • 37
  • 1
    Looks like it targets older runtimes with which your targets should be compatible. https://www.nuget.org/packages/awssdk.core/#supportedframeworks-body-tab – Eelke Jul 01 '23 at 08:42
  • Thanks! it all makes sense now, wish the .NET standard package support was more descriptive. – renegadeMind Jul 06 '23 at 14:21

1 Answers1

0

As is evident to me on now how .NET Standard support works between 2.0 and 2.1 - assemblies/packages targeting STD 2.0 are also compatible with STD 2.1. Leaving this answer here to help others with the same query.

renegadeMind
  • 4,073
  • 5
  • 29
  • 37