🔖
Ubuntu 22.04 で .net 6
Ubuntu 22.04 で .net 6
Ubuntu 22.04 で .net 6 をネイティブサポートする記事が出ていたので試してみた。
インストール
sudo apt update
sudo apt install -y dotnet6
サンプルプロジェクト作成
dotnet new console -o helloworld
生成されたソースコード確認
$ cd helloworld/
$ cat Program.cs
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");
ビルド
$ dotnet build
実行
$ ./bin/Debug/net6.0/helloworld
Hello, World!
Discussion