-
Notifications
You must be signed in to change notification settings - Fork 246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(csharp): upgrade to netcoreapp3.1 #1241
Conversation
From `netcoreap3.0`, in order to reflect the current recommended framework version for .NET 3.x.
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
What is the impact of this? Specifically, what are the benefits and what are the costs?
To me, it seems nice to our customers to have as broad compatibility as possible for our software, to not force them to upgrade unnecessarily. It's why we target Java 8 (instead of 13) and NodeJS 10 (instead of 13) and Python 3.6 (instead of 3.7). |
Ref: https://dotnet.microsoft.com/platform/support/policy/dotnet-core |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the info!
(Note that this code requires a new Superchain image to be live before it'll pass PR validations) |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
From
netcoreap3.0
, in order to reflect the currentrecommended framework version for .NET 3.x.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
Commit Message
feat(csharp): upgrade to netcoreapp3.1 (#1241)
As
netcoreapp3.0
is going to be EOL pretty soon (early March 2020),upgrading our target framework to
netcoreapp3.1
early in order tocatch any surprises. Since
netcoreapp3.1
is nothing but an LTS versionof
netcoreapp3.0
(plus some bug fixes), it should be transparent to userswho may only need to upgrade their .NET SDK.