Skip to content

Commit b70463f

Browse files
authored
Updated link in Readme.md
Updated link to .NET 8 support on AWS guide
1 parent 34fc021 commit b70463f

File tree

1 file changed

+20
-21
lines changed

1 file changed

+20
-21
lines changed

RuntimeSupport/dotnet9/Readme.md

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,30 @@
1-
21
# .NET 9 support on AWS
32
This guide describes .NET 9 support provided by AWS services and tools. The guide will be updated as new support is added.
43

54
Related Content:
6-
- [.NET 8 Support on AWS](https://aws.amazon.com/blogs/dotnet/net-8-support-on-aws/)
5+
- [.NET 8 Support on AWS](https://github.com/aws-samples/aws-net-guides/tree/master/RuntimeSupport/dotnet8)
76
- [GitHub home for .NET on AWS](https://github.com/aws/dotnet)
87
- [AWS Developer Center - .NET on AWS](https://aws.amazon.com/developer/language/net/)
98

109
## Introduction
1110

1211
[.NET 9](https://learn.microsoft.com/en-us/dotnet/core/whats-new/dotnet-9/overview) is the latest version of cross-platform .NET, released in November 2024. .NET 9 includes extensive performance enhancements, [.NET Aspire](https://learn.microsoft.com/en-us/dotnet/aspire/get-started/aspire-overview) for cloud-native development, and improvements to ASP.NET, Blazor, and .NET MAUI. The instructions that follow explain how to use .NET 9 on AWS.
1312

14-
If you’re running an older version of .NET, be aware that both .NET 6 and .NET 7 have reached end of support. Per Microsoft's [.NET Support Policy](https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core), .NET 9 (a Standard-Term Support release) will be supported through May 12, 2026, and .NET 8 (a Long-Term Support release) through November 10, 2026.
13+
If you’re running an older version of .NET, be aware that both .NET 6 and .NET 7 have reached end of support. Per Microsoft's [.NET Support Policy](https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core), .NET 9 (a Standard-Term Support release) will be supported through May 12, 2026, and .NET 8 (a Long-Term Support release) through November 10, 2026.
1514

1615
## Compute Services
1716

1817
You can run .NET 9 today on Amazon Elastic Compute Cloud ([Amazon EC2](https://aws.amazon.com/ec2/)) and, using containers, Amazon Elastic Kubernetes Service ([Amazon EKS](https://aws.amazon.com/eks/)), Amazon Elastic Container Service ([Amazon ECS](https://aws.amazon.com/ecs/)), and [AWS Lambda](https://aws.amazon.com/lambda/).
1918

2019
## Amazon EC2
2120

22-
Amazon EC2 offers broad and deep compute functionality, with granular control for managing your infrastructure with a choice of processors, storage, and networking. Customers can install .NET 9 on over [400 instance types](https://aws.amazon.com/ec2/instance-types/).
21+
Amazon EC2 offers broad and deep compute functionality, with granular control for managing your infrastructure with a choice of processors, storage, and networking. Customers can install .NET 9 on over [400 instance types](https://aws.amazon.com/ec2/instance-types/).
2322

24-
To install .NET 9 on an EC2 instance, specify [User Data](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html#user-data-console) commands when launching the instance.
23+
To install .NET 9 on an EC2 instance, specify [User Data](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html#user-data-console) commands when launching the instance.
2524

2625
For instructions and scripts on installing .NET on Linux, refer to [.NET 9 installation instructions for Linux](https://github.com/dotnet/core/blob/main/release-notes/9.0/install-linux.md) and [Install .NET on Linux by using an install script or by extracting binaries](https://learn.microsoft.com/en-us/dotnet/core/install/linux-scripted-manual#scripted-install).
2726

28-
You can use automation facilities in [AWS Systems Manager](https://aws.amazon.com/systems-manager) to automatically install .NET runtimes using automation documents, and use the [EC2 Image Builder](https://aws.amazon.com/image-builder/) service to pre-create EC2 Images with the .NET Runtime pre-installed.
27+
You can use automation facilities in [AWS Systems Manager](https://aws.amazon.com/systems-manager) to automatically install .NET runtimes using automation documents, and use the [EC2 Image Builder](https://aws.amazon.com/image-builder/) service to pre-create EC2 Images with the .NET Runtime pre-installed.
2928

3029
## AWS Elastic Beanstalk
3130

@@ -39,15 +38,15 @@ Elastic Beanstalk Linux currently supports the **.NET 8** runtime on Windows and
3938

4039
You can run .NET 9 applications on AWS Lambda in several ways. You can create your own [custom runtime](https://docs.aws.amazon.com/lambda/latest/dg/runtimes-custom.html), [deploy a container image](https://docs.aws.amazon.com/lambda/latest/dg/csharp-image.html), or publish native code to Lambda using NativeAOT compilation.
4140

42-
The .NET Lambda Annotations Framework simplifies the programming model and lets you write .NET Lambda functions more naturally in C#. When using custom runtimes or native ahead of time ([Native AOT](https://learn.microsoft.com/en-us/dotnet/core/deploying/native-aot/?tabs=windows%2Cnet8)) compilation, the framework removes the need to manually bootstrap the Lambda runtime and can auto-generate the Main method. Refer to [.NET Lambda Annotations Design - Auto Generate Main](https://github.com/aws/aws-lambda-dotnet/blob/master/Docs/lambda-annotations-design.md#auto-generate-main).
41+
The .NET Lambda Annotations Framework simplifies the programming model and lets you write .NET Lambda functions more naturally in C#. When using custom runtimes or native ahead of time ([Native AOT](https://learn.microsoft.com/en-us/dotnet/core/deploying/native-aot/?tabs=windows%2Cnet8)) compilation, the framework removes the need to manually bootstrap the Lambda runtime and can auto-generate the Main method. Refer to [.NET Lambda Annotations Design - Auto Generate Main](https://github.com/aws/aws-lambda-dotnet/blob/master/Docs/lambda-annotations-design.md#auto-generate-main).
4342

4443
## Containers
4544

46-
You can deploy .NET applications running on either Windows or Linux containers to [Amazon ECS](https://aws.amazon.com/ecs/) or Amazon EKS ([Amazon EKS](https://aws.amazon.com/eks/)). [AWS Fargate](https://aws.amazon.com/fargate/) is a service that you can use to run and manage the lifecycle of ECS and EKS containers without the need to manage the container infrastructure yourself.
45+
You can deploy .NET applications running on either Windows or Linux containers to [Amazon ECS](https://aws.amazon.com/ecs/) or Amazon EKS ([Amazon EKS](https://aws.amazon.com/eks/)). [AWS Fargate](https://aws.amazon.com/fargate/) is a service that you can use to run and manage the lifecycle of ECS and EKS containers without the need to manage the container infrastructure yourself.
4746

48-
[AWS App Runner](https://aws.amazon.com/apprunner/) is a fully managed service that makes it easy to quickly deploy containerized web applications and APIs, scaling up or down automatically to meet application traffic needs. To use with .NET 9 applications, upload a container image with the .NET 9 application to Amazon Elastic Container Registry ([Amazon ECR](https://aws.amazon.com/ecr/)) and use the [source image](https://docs.aws.amazon.com/apprunner/latest/dg/service-source-image.html) support to configure AWS App Runner to start, run, scale, and load balance the application.
47+
[AWS App Runner](https://aws.amazon.com/apprunner/) is a fully managed service that makes it easy to quickly deploy containerized web applications and APIs, scaling up or down automatically to meet application traffic needs. To use with .NET 9 applications, upload a container image with the .NET 9 application to Amazon Elastic Container Registry ([Amazon ECR](https://aws.amazon.com/ecr/)) and use the [source image](https://docs.aws.amazon.com/apprunner/latest/dg/service-source-image.html) support to configure AWS App Runner to start, run, scale, and load balance the application.
4948

50-
You can deploy a .NET 9 application to Elastic Beanstalk in a container. For more information, refer to [Deploying Elastic Beanstalk applications from Docker containers](https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_docker.html).
49+
You can deploy a .NET 9 application to Elastic Beanstalk in a container. For more information, refer to [Deploying Elastic Beanstalk applications from Docker containers](https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_docker.html).
5150

5251
## Security and Diagnostics
5352

@@ -57,15 +56,15 @@ You can deploy a .NET 9 application to Elastic Beanstalk
5756

5857
## Tools, Libraries, and SDK
5958

60-
If you’ve been using an older version of .NET on AWS, be sure to update the AWS tools installed on your developer machine.
59+
If you’ve been using an older version of .NET on AWS, be sure to update the AWS tools installed on your developer machine.
6160

6261
### AWS SDK for .NET
6362

64-
The [AWS SDK for .NET](https://aws.amazon.com/sdk-for-net/) allows .NET developers to integrate AWS services into their application code in a familiar and consistent manner. We recommend using the latest version of the SDK, version 4. The SDK is compatible with Native AOT since version 3.7.300. The SDK is available from [NuGet](https://www.nuget.org/packages/awssdk.core/). Learn how to get started with the [AWS SDK for .NET in the Developer Guide](https://docs.aws.amazon.com/sdk-for-net/v3/developer-guide/welcome.html).
63+
The [AWS SDK for .NET](https://aws.amazon.com/sdk-for-net/) allows .NET developers to integrate AWS services into their application code in a familiar and consistent manner. We recommend using the latest version of the SDK, version 4. The SDK is compatible with Native AOT since version 3.7.300. The SDK is available from [NuGet](https://www.nuget.org/packages/awssdk.core/). Learn how to get started with the [AWS SDK for .NET in the Developer Guide](https://docs.aws.amazon.com/sdk-for-net/v3/developer-guide/welcome.html).
6564

6665
### AWS Code Build
6766

68-
[AWS Code Build](https://aws.amazon.com/codebuild/) is a fully managed service that helps developers automatically build applications from source code. The CodeBuild service allows the user to customize the build environment, to suit the needs of the application being built. This includes the ability to install additional .NET runtimes. You can add support for building .NET 9 applications by adding the following snippet to your applications buildspec.yml file. Source: [Install .NET on Linux by using an install script or by extracting binaries](https://learn.microsoft.com/en-us/dotnet/core/install/linux-scripted-manual#scripted-install).
67+
[AWS Code Build](https://aws.amazon.com/codebuild/) is a fully managed service that helps developers automatically build applications from source code. The CodeBuild service allows the user to customize the build environment, to suit the needs of the application being built. This includes the ability to install additional .NET runtimes. You can add support for building .NET 9 applications by adding the following snippet to your applications buildspec.yml file. Source: [Install .NET on Linux by using an install script or by extracting binaries](https://learn.microsoft.com/en-us/dotnet/core/install/linux-scripted-manual#scripted-install).
6968

7069
```yaml
7170
install:
@@ -76,28 +75,28 @@ This will automatically download and install the .NET 9 SDK as part of the Insta
7675
7776
### AWS Deploy Tool for .NET
7877
79-
The [AWS Deploy Tool for .NET](https://aws.github.io/aws-dotnet-deploy/) command line interface (CLI) is an interactive assistant that provides compute recommendations for .NET applications and deploys them to AWS in a few easy steps. The Deploy Tool supports .NET 9 applications by creating container images for container based services like Amazon ECS and AWS AppRunner or using .NET self-contained publishing for Elastic Beanstalk.
78+
The [AWS Deploy Tool for .NET](https://aws.github.io/aws-dotnet-deploy/) command line interface (CLI) is an interactive assistant that provides compute recommendations for .NET applications and deploys them to AWS in a few easy steps. The Deploy Tool supports .NET 9 applications by creating container images for container based services like Amazon ECS and AWS AppRunner or using .NET self-contained publishing for Elastic Beanstalk.
8079
8180
### AWS Toolkit for Visual Studio
8281
83-
The [AWS Toolkit for Visual Studio](https://aws.amazon.com/visualstudio/) is an extension for Microsoft Visual Studio on Windows that makes it easier for developers to develop, debug, and deploy .NET applications using Amazon Web Services. Visual Studio 2022 supports .NET 9 development..
82+
The [AWS Toolkit for Visual Studio](https://aws.amazon.com/visualstudio/) is an extension for Microsoft Visual Studio on Windows that makes it easier for developers to develop, debug, and deploy .NET applications using Amazon Web Services. Visual Studio 2022 supports .NET 9 development..
8483
85-
The Toolkit’s [Publish to AWS](https://docs.aws.amazon.com/toolkit-for-visual-studio/latest/user-guide/publish-experience.html) feature integrates with the AWS Deploy Tool for .NET, and can deploy .NET 9 projects to various AWS services from Visual Studio as of version 1.60.0. You can deploy ASP.NET Core projects to Amazon ECS, AWS App Runner, Elastic Beanstalk Windows, Elastic Beanstalk Linux, or the Amazon Elastic Container Registry (Amazon ECR).
84+
The Toolkit’s [Publish to AWS](https://docs.aws.amazon.com/toolkit-for-visual-studio/latest/user-guide/publish-experience.html) feature integrates with the AWS Deploy Tool for .NET, and can deploy .NET 9 projects to various AWS services from Visual Studio as of version 1.60.0. You can deploy ASP.NET Core projects to Amazon ECS, AWS App Runner, Elastic Beanstalk Windows, Elastic Beanstalk Linux, or the Amazon Elastic Container Registry (Amazon ECR).
8685
8786
You can download the AWS Toolkit for Visual Studio 2022 from the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=AmazonWebServices.AWSToolkitforVisualStudio2022). If you're already using the AWS Toolkit for Visual Studio, be sure to upgrade to the latest version by navigating to Manage Extensions > Updates in Visual Studio.
8887
8988
## .NET Modernization Tools
9089
9190
AWS provides assistive tools that help architects, developers, and IT professionals modernize .NET workloads. At present, the following AWS modernization tools support **.NET 8**.
9291
93-
[AWS App2Container](https://aws.amazon.com/app2container/) (A2C) is a command line tool that containerizes your applications. It automatically generates a container image configured with the correct dependencies, network configurations, and deployment instructions for Amazon ECS or Amazon EKS. A2C can detect a .NET 8 runtime version and containerize the application using the corresponding runtime base images.
92+
[AWS App2Container](https://aws.amazon.com/app2container/) (A2C) is a command line tool that containerizes your applications. It automatically generates a container image configured with the correct dependencies, network configurations, and deployment instructions for Amazon ECS or Amazon EKS. A2C can detect a .NET 8 runtime version and containerize the application using the corresponding runtime base images.
9493
95-
[AWS Microservice Extractor for .NET](https://aws.amazon.com/microservice-extractor/) is an assistive tool that serves as an advisor to assess and visualize monolithic code, and recommend microservice candidates using artificial intelligence and heuristics. It also serves as a robotic builder to simplify microservices extraction. Microservice Extractor supports analyzing .NET 8 applications for visualization, grouping, and extraction. With its integrated strangler-fig porting capability, you can also use Microservice Extractor to break down a large .NET Framework-based application with hundreds of projects and thousands of classes into manageable groups and port those directly to .NET 8.
94+
[AWS Microservice Extractor for .NET](https://aws.amazon.com/microservice-extractor/) is an assistive tool that serves as an advisor to assess and visualize monolithic code, and recommend microservice candidates using artificial intelligence and heuristics. It also serves as a robotic builder to simplify microservices extraction. Microservice Extractor supports analyzing .NET 8 applications for visualization, grouping, and extraction. With its integrated strangler-fig porting capability, you can also use Microservice Extractor to break down a large .NET Framework-based application with hundreds of projects and thousands of classes into manageable groups and port those directly to .NET 8.
9695
97-
[Migration Hub Strategy Recommendations](https://docs.aws.amazon.com/migrationhub-strategy/latest/userguide/what-is-mhub-strategy.html) (MHSR) helps you plan migration and modernization initiatives by offering strategy recommendations for viable transformation paths for your applications. MHSR can detect .NET 8 applications and provide recommendations for them.
96+
[Migration Hub Strategy Recommendations](https://docs.aws.amazon.com/migrationhub-strategy/latest/userguide/what-is-mhub-strategy.html) (MHSR) helps you plan migration and modernization initiatives by offering strategy recommendations for viable transformation paths for your applications. MHSR can detect .NET 8 applications and provide recommendations for them.
9897
99-
For more information on .NET modernization use cases and tools, see [Modernize .NET Workloads on AWS](https://aws.amazon.com/developer/language/net/modernize) at the .NET on AWS developer center.
98+
For more information on .NET modernization use cases and tools, see [Modernize .NET Workloads on AWS](https://aws.amazon.com/developer/language/net/modernize) at the .NET on AWS developer center.
10099
101100
## Conclusion
102101
103-
You can run .NET 9 workloads on AWS today across multiple AWS compute services. The SDK for .NET and multiple developer tools also support .NET 9. If you have existing AWS workloads on .NET 6 or .NET 7, be proactive in upgrading to .NET 8 or later as they are out of support. You can keep up to date on .NET on AWS developments by visiting the AWS [.NET development center](https://aws.amazon.com/developer/language/net/).
102+
You can run .NET 9 workloads on AWS today across multiple AWS compute services. The SDK for .NET and multiple developer tools also support .NET 9. If you have existing AWS workloads on .NET 6 or .NET 7, be proactive in upgrading to .NET 8 or later as they are out of support. You can keep up to date on .NET on AWS developments by visiting the AWS [.NET development center](https://aws.amazon.com/developer/language/net/).

0 commit comments

Comments
 (0)