CentOS Stream 9 .NET 7.0 をインストールする方法

環境
CentOS Stream 9
Windows11 Pro 64bit

操作方法
1. .NET 7.0 のインストールを行います

# dnf -y install dotnet-runtime-7.0 dotnet-sdk-7.0 dotnet-targeting-pack-7.0 dotnet-templates-7.0 dotnet-hostfxr-7.0

バージョンを確認します

# dotnet --version
7.0.110

 

2.動作確認
# dotnet new console -o helloworld
# cd helloworld
# dotnet run
Hello, World!

3.一般ユーザーで ASP.NET Web App サンプルアプリケーションを動作確認します

$ dotnet new razor -o asp.net
$ cd asp.net
$ dotnet run --urls=http://10.0.xxx.xxx:5000/

 

CentOS Stream 9

Posted by arkgame