.NET Core 5.0 : インストール2020/12/08 |
|
.NET Core 5.0 をインストールします。
|
|
| [1] | AppStream からインストール可能です。 |
|
[root@dlp ~]# dnf -y install dotnet-runtime-5.0 dotnet-sdk-5.0 dotnet-targeting-pack-5.0 dotnet-templates-5.0 dotnet-hostfxr-5.0 Dependencies resolved. ================================================================================ Package Arch Version Repo Size ================================================================================ Installing: dotnet-hostfxr-5.0 x86_64 5.0.0-0.6.preview8.el8 appstream 153 k dotnet-runtime-5.0 x86_64 5.0.0-0.6.preview8.el8 appstream 27 M dotnet-sdk-5.0 x86_64 5.0.100-0.6.preview8.el8 appstream 52 M dotnet-targeting-pack-5.0 x86_64 5.0.0-0.6.preview8.el8 appstream 754 k dotnet-templates-5.0 x86_64 5.0.100-0.6.preview8.el8 appstream 1.9 M Installing dependencies: aspnetcore-runtime-5.0 x86_64 5.0.0-0.6.preview8.el8 appstream 6.0 M aspnetcore-targeting-pack-5.0 x86_64 5.0.0-0.6.preview8.el8 appstream 1.4 M dotnet-apphost-pack-5.0 x86_64 5.0.0-0.6.preview8.el8 appstream 3.8 M Transaction Summary ================================================================================ Install 8 Packages ..... .....[root@dlp ~]# dotnet --version 5.0.100-preview.8.20417.9 # Hello World で動作確認 [root@dlp ~]# dotnet new console -o helloworld
Welcome to .NET 5.0!
---------------------
SDK Version: 5.0.100-preview.8.20417.9
----------------
Installed an ASP.NET Core HTTPS development certificate.
To trust the certificate run 'dotnet dev-certs https --trust' (Windows and macOS only).
Learn about HTTPS: https://aka.ms/dotnet-https
----------------
Write your first app: https://aka.ms/dotnet-hello-world
Find out what's new: https://aka.ms/dotnet-whats-new
Explore documentation: https://aka.ms/dotnet-docs
Report issues and find source on GitHub: https://github.com/dotnet/core
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli
--------------------------------------------------------------------------------------
Getting ready...
The template "Console Application" was created successfully.
Processing post-creation actions...
Running 'dotnet restore' on helloworld/helloworld.csproj...
Determining projects to restore...
Restored /root/helloworld/helloworld.csproj (in 121 ms).
Restore succeeded.
An update for template pack Microsoft.DotNet.Common.ProjectTemplates.5.0::5.0.0-preview.8.20371.3 is available.
install command: dotnet new -i Microsoft.DotNet.Common.ProjectTemplates.5.0::5.0.0
[root@dlp ~]# cd helloworld [root@dlp helloworld]# dotnet run Hello World! |
| Sponsored Link |
|
|