Raspberry Pi port, piCore-15.0 is available!
~$ tce-load -wi dotnet7-sdk....~$ dotnet --info.NET SDK: Version: 7.0.100 Commit: e12b7af219Runtime Environment: OS Name: tinycore OS Version: 13.0 OS Platform: Linux RID: linux-x64 Base Path: /tmp/tcloop/dotnet7-sdk/usr/local/share/dotnet7-sdk/sdk/7.0.100/Host: Version: 7.0.0 Architecture: x64 Commit: d099f075e4.NET SDKs installed: 7.0.100 [/tmp/tcloop/dotnet7-sdk/usr/local/share/dotnet7-sdk/sdk].NET runtimes installed: Microsoft.AspNetCore.App 7.0.0 [/tmp/tcloop/dotnet7-sdk/usr/local/share/dotnet7-sdk/shared/Microsoft.AspNetCore.App] Microsoft.NETCore.App 7.0.0 [/tmp/tcloop/dotnet7-sdk/usr/local/share/dotnet7-sdk/shared/Microsoft.NETCore.App]Other architectures found: NoneEnvironment variables: Not setglobal.json file: Not foundLearn more: https://aka.ms/dotnet/infoDownload .NET: https://aka.ms/dotnet/download
~$ mkdir Hello~$ cd Hello~$ dotnet new consoleWelcome to .NET 7.0!---------------------SDK Version: 7.0.100Telemetry---------The .NET tools collect usage data in order to help us improve your experience. It is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.Read more about .NET CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry----------------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-worldFind out what's new: https://aka.ms/dotnet-whats-newExplore documentation: https://aka.ms/dotnet-docsReport issues and find source on GitHub: https://github.com/dotnet/coreUse 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli--------------------------------------------------------------------------------------The template "Console App" was created successfully.Processing post-creation actions...Restoring /home/tc/tc.csproj: Determining projects to restore... Restored /home/tc/tc.csproj (in 83 ms).Restore succeeded.~$ dotnet runHello, World!