.NET
Runtimes and APIs for building and running .NET applications on Linux and in containers.
Documentation
Getting started with .NET 7.0
Getting started with .NET 6.0
.NET 6.0 on OpenShift Container Platform
Getting started with .NET 5.0
Getting started with .NET Core 3.1
.NET Core 3.1 on OpenShift using RHEL 8-based images
.NET Core 3.1 on OpenShift using RHEL 7-based images
Platform documentation
Getting started on RHEL 8
These steps show how to install .NET 6.0 on RHEL 8 and use the SDK to create and run a console application:
1. Install .NET 6.0
$ sudo yum install dotnet-sdk-6.0 -y
2. Create a new console application in a directory called hello-world
$ dotnet new console -o hello-world
3. Run the application
$ cd hello-world
$ dotnet run
Hello World!
Migrating from .NET Framework to .NET 5
Developers can use the ApiPort tool to evaluate their current .NET code.