You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AWS Lambda targets NetCore 1.0 (NetStandard 1.6.0), but Mandrill-dotnet says it depends on NetStandard >= 1.6.1. So even though you say you support NetCore, it really only supports 1.1+ because adding this package to a lambda function will not be allowed to publish to AWS Lambda.
following output on attempt to publish:
...
Error: Project is referencing NETStandard.Library version 1.6.1. Max version supported by netcoreapp1.0 is 1.6.0.
Error: NETStandard.Library 1.6.1 is used for target framework netcoreapp1.1.
Listed dependencies on most versions of Mandrill-dotnet package: NETStandard.Library (>= 1.6.1)
I can hackily change the package.json to 1.6.0 after importing the mandrill package and it seems to work, but this is not really supported.
Is there a reason for targeting NetStandard 1.6.1 instead of 1.6.0? It seems like this should be changed or the doc should be updated to say you support NetCore 1.1+ but not 1.0.
The text was updated successfully, but these errors were encountered:
AWS Lambda targets NetCore 1.0 (NetStandard 1.6.0), but Mandrill-dotnet says it depends on NetStandard >= 1.6.1. So even though you say you support NetCore, it really only supports 1.1+ because adding this package to a lambda function will not be allowed to publish to AWS Lambda.
following output on attempt to publish:
...
Listed dependencies on most versions of Mandrill-dotnet package: NETStandard.Library (>= 1.6.1)
I can hackily change the package.json to 1.6.0 after importing the mandrill package and it seems to work, but this is not really supported.
Is there a reason for targeting NetStandard 1.6.1 instead of 1.6.0? It seems like this should be changed or the doc should be updated to say you support NetCore 1.1+ but not 1.0.
The text was updated successfully, but these errors were encountered: