As of today the new .NET 7.0 SDK extension is available for the 64bit TinyCore platform.
~$ tce-load -wi dotnet7-sdk
....
~$ dotnet --info
.NET SDK:
Version: 7.0.100
Commit: e12b7af219
Runtime 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:
None
Environment variables:
Not set
global.json file:
Not found
Learn more:
https://aka.ms/dotnet/info
Download .NET:
https://aka.ms/dotnet/download
Testing the HelloWorld console program
~$ mkdir Hello
~$ cd Hello
~$ dotnet new console
Welcome to .NET 7.0!
---------------------
SDK Version: 7.0.100
Telemetry
---------
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-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
--------------------------------------------------------------------------------------
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 run
Hello, World!
Have fun!
ps. Extension is about 209MB!